Everyone’s Favorite Energy Meter Hack, Now Wireless

[Kalle] is at it again with more hacks on electricity use meters. This time, the meter has been hacked to stream their data over the aether wirelessly. Now, data can be grabbed from multiple devices simultaneously, making the possibilities for home energy monitoring limitless

The first project [Kalle] did involved finding a meter from China with capabilities similar to (and cheaper than) the Kill-a-Watt meters. Unlike the Kill-a-Watt which spits out analog values, the Chinese meter sent digital information out on a ribbon cable with the bus lines labeled. Since the meter was so hackable, [Kalle] took it even further in this hack.

With those pesky wires out of the way, the device now uses an Arduino Pro Mini to sniff the energy meter’s data stream. Then it transmits the data wirelessly with a nRF34L01+ transceiver. As a perk, all of these chips fit inside the case of the energy meter, making this a very tidy hack indeed. The project code an incredible amount of detail is available on the project site, so be sure to check this one out for all of your energy monitoring needs!

LED Light Staffs For The Ultimate Portable Rave

3531621392887203462

[risknc] and [mpinner] have been working on a couple of LED light staff designs for a while now and have come up with a prototype that can light up the night with an array of streaming colors. There is even a dial that can turn up and down the brightness.

Originally, [risknc] began developing his own project at SpaceX and dove further into the idea right before Burning Man. The visual effects, when twirled through the air, produced an extremely bright flow of energy that can be seen circling around the user.

The 8ft long carbon fiber staff was stuffed to the edges with RGB LEDs. Neopixel strips at 60 LED per meter were used to alternate between colors, and a whole bunch of white capable LEDs were embedded into the staff as well. One of early designs was purposefully left at a local hackerspace called Crashspace in Culver City, California. Photos of community members trying it out surfaced on the hackerspace’s website. In addition, a description of the staff and a few high-quality photos of the ‘Sparkle Stick’ were uploaded on to the Suprmasv projects page. Searching through the pictures reveal an instance that shows the LED light staff being used during a flow session with a fire poi spinner in the background. Perhaps there is a way to combine LEDs and fire? Anyways, a later version of the staff was tested out at the 2014 Maker Faire in San Francisco.

Full specs and logs of the project can be found on Hackaday.io. A quick video of [mpinner]’s light staff being spun around comes up after the break. In the video, it looks like they are testing it out outside of Crashspace as they run through the darkness of the alleyway in the back, lighting up the area with a nice LED glow. Plans for the future include building a bunch of them and wirelessly syncing them up. CAD models will be uploaded soon as well.

Continue reading “LED Light Staffs For The Ultimate Portable Rave”

Reflow Oven Controller With Graphic LCD

Reflow Controller

A reflow oven is one of the most useful tools you will ever have, and if you haven’t built one yet, now is as good a time as any. [0xPIT’s] Arduino based reflow oven controller with a graphic LCD is one of the nicest reflow controllers we’ve seen.

Having a reflow oven opens up a world of possibilities. All of those impossible to solder surface mount devices are now easier than ever. Built around the Arduino Pro Micro and an Adafruit TFT color LCD, this project is very straight forward. You can either make your own controller PCB, or use [0xPIT’s] design. His design is built around two solid state relays, one for the heating elements and one for the convection fan. “The software uses PID control of the heater and fan output for improved temperature stability.” The project write-up is also on github, so be sure to scroll down and take a look at the README.

All you need to do is build any of the laser cutters and pick and place machines that we have featured over the years, and you too can have a complete surface mount assembly line!

Building A Final Key

Final Key

Remembering passwords is a pain, and there’s a number of devices out there to make it easier. If you’re looking to roll your own, this guide to building a Final Key will walk you through the process.

We talked about the Final Key before. It’s a one button password manager that encrypts and stores your password. It acts as a virtual serial port for configuration. When you hit the button, it becomes a keyboard and types in the correct password.

The creator has no intentions of making this a commercial project for a number of reasons. Instead, easy build instructions are provided based on the Arduino Pro Micro. The 24LC512 EEPROM can be soldered directly to the Arduino by bending out the DIP legs. A few resistors, a button, and an LED finish off the project. The last step is to fill it with hot glue to prevent tampering.

The Final Key firmware is available on Github, and the case can be ordered from Shapeways. If you’re interested in hardware password management, you can also check out the Mooltipass which is being developed on Hackaday.

[Thanks to Lars for the tip!]

Are We Not Indestructible? We Are Quiz Buttons!

In what we hope is a new trend in interviewing, some of the people at [Anthony]’s place of work asked him to make some wireless quiz buttons. He took the task quite seriously, making them extremely robust and low-power.

[Anthony] is experienced in the button arts, having made this party push button for a wedding reception. His design for the quiz buttons is a little different. Each button has an Arduino Pro mini and an nRF24L01 wireless RF module. On the receiver side is an Arduino Pro micro and an another RF module. A connected PC captures the serial data and  displays the pressed button’s ID. It also shows the order in which subsequent buttons were pressed and the time elapsed between them.

The really notable part of this build aside from the awesome laser-cut MDF Devo energy dome button housings is the extremely low power consumption of the transmitting Arduinos. [Anthony] has designed them to go into sleep mode which disables all on-board circuitry and only wakes on interrupt. He removed the power LED and the voltage regulator since they run on 2-AA batteries. The voltage regulator was drawing more than 25mA in sleep mode. Because of these mods, each button consumes < 1μA, which is less power than the batteries can self discharge over their lifetime.

[Thanks Jef]