Live data from Hacker News

Ask HN: What is your hardware/garage side-project?

news.ycombinator.com

51–60 of 86 posts

Re: Ask HN: What is your hardware/garage side-project?

#51
post #22

Using a BeagleBone Black to read current sensors and send MQTT messages whenever an appliance (washer/dryer) is turned on/off.

I did something similar a couple years back except thermally by monitoring the dryer exhaust temp and ran into a problem where apparently "permanent press" means cold air for the last 10-15 minutes. Ok then that meant a timer initiating when the temp drops below whatever. I would imagine this will show up in your current monitoring where the heating elements turn off but the tub keeps spinning. Of course you may be monitoring a gas dryer LOL. Good luck it'll be fun.

Re: Ask HN: What is your hardware/garage side-project?

#52
I've put together illustrations for each habit I'd like to keep, and then printed them on archival paper. I also built a LED calendar to keep track of things and combined it all into a wall frame. I occasionally write project logs on Hackaday[1].

It's fun to work on and I've noticed I'm already keeping up on these habits since they are always on my mind when building. Also the sunk cost has an effect on me to want to get as much out of this project as I can.. even more incentive!

[1] - https://hackaday.io/project/18304-21days-habit-tracker

Re: Ask HN: What is your hardware/garage side-project?

#53
DIY Home Automation, using a mix of Raspberry Pis (for "bigger things") and Atmega328p micro controllers (same chip used in the Arduino Uno's) - Goal #1 is to have heating controlled by this lot..

So far, I've the heating relay control board done (16x 240V channels, controlling boiler activation and zone actuators to open the flow to different rooms). The on-wall thermostat PCB's are currently being manufactured, once they arrive I'll solder all the components in place and get a crude mounting done.. Then it's time to design the enclosure.

Once all this is done, I'll move onto the lighting as Goal #2. For these, it'll be the ATMega MC's, some RFM69 RF modules, and either a simple relay (for on/off lighting) or some as-yet-to-be-determined dimmer circuit. The challenge for these is, there's A) no neutral wire in at the light switch in EU (or maybe just Ireland/UK?), and B) it's 240V supply or nothing - unlike the thermostats, where each is wired separately back to a central point, and can be swapped over to a 5V supply, these will need to drop the voltage on board using minimal space (much less than a typical 5V wall-wart).

Re: Ask HN: What is your hardware/garage side-project?

#54
A very trivial implementation of TCP running atop RS232USB converters connected back-to-back so you can run SSH over USB (or RS232) at around 3Mbps. For tunnels and stuff.

5000 LEDs drilled into 30m^2 worth of plywood, wrote a kernel driver to present the LEDs as a frame buffer on an RPi with Chromium, we (small team) mounted whole thing onto concrete slabs standing in a lake. Another RPi receives SMS text messages using a JS script to decode GSM PDUs with Unicode that are ultimately rendered on the LEDs. Nice graphics are added on top if you write something sweet for example.

A device to virtually switch an SD card out of an RPi and onto a host computer so you can remotely format the SD card and reboot the RPi.

A crawler versus human detector that is a bit simpler than those normally are.

Lots of projects that get tossed because they require expertise outside of my own area. I'm quite bad at finding other tinkerers to cooperate with, unfortunately.

Re: Ask HN: What is your hardware/garage side-project?

#56
CNC machine shop. I rigged a Sherline mill and lathe with stepper motors, limit switches, electronic touch-off and emergency stop button. I multiplexed the limit switches with a custom designed PCB with Schmitt triggers and an Arduino. I hooked this all up to a stepper motor controller board and power supply, and I placed all that into a custom built enclosure. I connected the controller board to a PC using PCIe parallel port cards. The PC runs LinuxCNC. This lets me machine alumninum into parts modelled in 3D CAD. Then I've machines various tools needed around the shop. I've also made a Turner's cube using the lathe, and again using the mill.

I've also built a custom PS3 style controllers for manhually controlling the CNC machines. This was again done with custom PCBs, joystick and encoder parts, and Arduino.

I'm working towards machining a Stirling engine with my CNC machines. I've also been working on and off on a robotic arm (which is what got me into machining metal parts in the first place).

Unrelated to CNC machining, I've done a small, beginner SDR project: ADS-B receiver built with R820T2 USB SDR and custom built antenna from coax cable and PVC pipes, lets me to track commercial aircraft that frequently fly over my house.

Re: Ask HN: What is your hardware/garage side-project?

#58
Tickerstorm.io - An algo trading platform in Java (pretty early still).

Difference from other platforms I've found: integrated machine learning phase which reuses the same data pipelines used by the algo when backtesting or trading live. Trying to reuse as many open source frameworks as possible to reduce the amount of new things a user has to learn. Based on Apache Storm, H2O machine learning, guava, Spring Framework etc. Not HF focused.

Most other platforms start off with you coding up your rules and allow you to back test those assumptions. However, this platform also incorporates the discovery phase of these rules rather than just assume you already have a set of rules.

Post reply on HN