Live data from Hacker News

Ask HN: What do you do with your Raspberry Pi?

news.ycombinator.com

861–870 of 1001 posts

Re: Ask HN: What do you do with your Raspberry Pi?

#861

I have a (basically non-existent) side business selling LED strips and RPi lighting controllers for surfboards! If you've seem some viral videos with guys surfing around at night, they were probably using my gear :-) Briefly put, I use the Glediator and Jinx! control software on an RPi, which communicates with an Arduino, which drives the LEDs. I put them in a permanently sealed box, water proof it as much as I possi…

Is it this? https://www.youtube.com/watch?v=yqgLaMc9IVA

Re: Ask HN: What do you do with your Raspberry Pi?

#862

I started a company that constructed booths which used 70 accurately sync'd Pis with custom PiCams (fitted with lenses) to take pictures of human subjects, for turning them into avatars like this: https://sketchfab.com/3d-models/pete-swagger-walk-a55d807de1... At the beginning of the project, I'd barely powered up the Pis I had collecting dust in my drawer. By the end, I was a legitimate domain expert in several nich…

What you call UBEC is just a switch mode DC-DC buck converter. They are used everywhere in electronics, and you could probably save money buying general puprose 5V buck converter modules instead of modules made specifically for RC. Anyway, that's very interesting info about supply voltage affecting Raspberry Pi speed and timekeeping, thanks!

This is true, although UBECs are also packaged with some filtering caps, and are in a nice heatshrinked package usually -- so I look at it the other way around; packaged UBECs are so cheap, if you can make do with them, it's too easy to just grab them off the shelf and move on with life rather than DIYing it from components.

All depends how many of whatever you're building, I suppose.

Re: Ask HN: What do you do with your Raspberry Pi?

#864
post #587
post #117

Earlier quoted context omitted.

I'm interested in learning more about your LED light alarm set up—I had a similar idea a while back but am less familiar with the world of Raspberry Pi.

Thanks for asking! I haven't documented it anywhere, and the source code isn't suitable for consumption by others. But, I can tell you about the basics. I bought a "12V" LED strip intended for automotive use, and created a simple circuit with a +12V DC supply and an NPN transistor. By hooking the NPN transistor to a PWM output on the Pi's I/O (via a resistor), I can control the LEDs from nearly full darkness to their…

I appreciate the writeup! I had originally looked into using the Arduino for this project but the prospect of handling times and daylight savings seemed like more crunch than I wanted to dig into. NTP is a good solution.

Have you found waking up to light a good alternative to standard alarms?

Re: Ask HN: What do you do with your Raspberry Pi?

#865
post #837

2 Pis for dealing with ADS-B (airplane data), one for 1090Mhz, the other for 978Mhz. I could run that on the same one, but seemed easier to just split them up given some of the software is a bit picky with device IDs. The 978Mhz is much quieter than the 1090Mhz, so I also run a private SpyServer ( https://github.com/lloydpick/docker-spyserver ) for listening to radio transmissions. 1 Raspberry Pi for a running a very…

Why do you listen to all these radio transmissions?

For the airplane data, I always liked browsing sites like flightradar24, planefinder etc, and wondered how they aggregated the data, and it sort of just went from there. I also now send the ADS-B data to open projects rather than commercial only entities.

In terms of the random radio transmissions, it was simply because I was already installing the two ADS-B antennas in my attic, and thought I might as well just put up the standard telescopic antenna that came with the USB receivers as well. I'm a newbie in terms of radio, so it's just been interesting scanning the bands to see what you can find and listen to.

A future project I have is to try and pick up the 443Mhz transmission from a really simple weather/temperature sensor I got from Walmart a while ago, since apparently that's what it uses to talk to the little base station it came with.

Re: Ask HN: What do you do with your Raspberry Pi?

#866

There's a bus station across from my studio / coworking space. I can see people waiting for the bus and doing either: 1) staring into the void 2) looking at their watches 3) desperately glancing in the direction where the bus is coming from. I figured that it'd be nice to let people know when the bus is supposed to be there. So, I installed a 28" display on a monitor stand, installed the stand on my window frame, tur…

Great job! This is an excellent example of being able to contribute to one's community with a small but nonetheless substantive project.

Re: Ask HN: What do you do with your Raspberry Pi?

#868

I love and hate this question! I've always been curious what others do with them, but I just convinced myself not to buy a 4 and I'm sure this thread will give me reason to reconsider. -1x Raspberry Pi Zero W in my garage running my drip irrigation (a relay board connects it to standard 24V irrigation solenoids) -1x Raspberry Pi 3 B+ in my office running a dynamic dns script and sitting behind a forwarded port for ea…

Did you need to do anything special to control the 24v solenoids?

I got this relay board [0], then took the power supply from an old sprinkler control system and spliced its leads in. From there, it's dead simple to control using the GPIO python library. I eventually want to monitor things like temperature, soil moisture, and forecast to determine the watering schedule, but right now I just have a cron job that switches the valves on and off a few times a week.

[1] https://www.amazon.com/gp/product/B00KTELP3I

Re: Ask HN: What do you do with your Raspberry Pi?

#869

Earlier quoted context omitted.

I live nearby and often use this when catching the 55! Sort of surreal to start reading your post and immediately recognize it's something from just a block away!

Hey, I also take the 55 but I never saw the screen!

Stop staring at your phone (kidding)

Re: Ask HN: What do you do with your Raspberry Pi?

#870
post #738

I love and hate this question! I've always been curious what others do with them, but I just convinced myself not to buy a 4 and I'm sure this thread will give me reason to reconsider. -1x Raspberry Pi Zero W in my garage running my drip irrigation (a relay board connects it to standard 24V irrigation solenoids) -1x Raspberry Pi 3 B+ in my office running a dynamic dns script and sitting behind a forwarded port for ea…

>-1x Raspberry Pi 3 B+ in my office running a dynamic dns script and sitting behind a forwarded port for easy sshing. could you give more info about this? i want to set up something similar at home also.

Here's the script: https://github.com/benrad/pydydns

This is specifically for Route53 since that's where I handle my DNS records. I think it would probably be trivial to modify it to work with another DNS provider with an API, though.

It's quite old and probably ugly, but it's been working flawlessly for several years so I haven't really mucked with it much since I created it.

Post reply on HN