Color Changing Door Handles

This color changing door handle was made using a very simple manufacturing process. [Barmak] already had experience working with polyester resins when making passive component filled drawer pulls (he included a couple of pictures at the end of his post). The same process was used here except that instead making it from one solid chunk of clear resin he decided to use alternating layers of dyed resin.

The build begins with a mold made out of MDF. This material has a very smooth surface finish which will help with the final look of the door handle. Threaded rod is inserted through carefully placed holes in the side of the mold — these will serve as the mounting hardware when complete. He then pours thin coats of resin to build up the complete handle.

An RGB LED strip is incorporated in the side of the handle that will go toward the door. It seems like the wires to control the device pass through a hollow spacer surrounding the threaded rod. He makes some mention of using a 555 timer to control the colors, but there’s not much more information than that. Still, the reflected light is a unique feature if you’ve got a place in your home that needs to be spiced up.

Once you’re done, you can use any leftover resin to make your own project boxes.

Lighted Shoe Ruffles — He’ll Never Step On Your Toes Again

Whether for fashion, emergency lighting, or just to make a statement, these lighted shoe clips make for a unique footwear accessory. [Becky Stern], who we’ve seen before hacking automatic knitting machines, tackles this quick lighted project.

The electronics are simple, two LEDs connected in parallel to a button battery by some conductive thread. The circuit is the same as an LED throwie, but she’s using a sewable battery holder. The ruffle is made by cutting out and folding several circles of fabric. We’re not too used to working with this building material and were glad to hear her tip on fusing the cut edges with a lighter. She’s also got a good tip about bending one LED lead in a square shape and the other in a round shape to keep track of the polarity. After sewing everything together and completing the circuit with the conductive thread [Becky] adds a paper clamp making this easy to use with any shoe. In fact, the guy’s don’t have to miss out on the fun as this could easily double as a boutineer.

Don’t miss [Becky’s] complete walk through video embedded after the break.

Continue reading “Lighted Shoe Ruffles — He’ll Never Step On Your Toes Again”

Workshop Lights So Bright, They Will Give You Sunburn

workshop_led_lighting_control

There are few things more frustrating than trying to tinker at your workbench with suboptimal lighting. [Jeremy] was toiling away in his workshop one afternoon when he decided that he finally had enough, and set out to overhaul his lighting setup.

His workshop is incredibly bright now, sporting a handful of under the shelf CCFL tubes to complement the mixture of cool and warm LEDs that are mounted on the ceiling. One thing we really liked about his setup is that he added a handful of LEDs to the bottom of his workbench, aimed at the floor – perfect for those times when a tiny screw or SMD component goes missing.

Everything is controlled by an ATMega 328 that he shoved into a project box, allowing him to tweak the lighting to suit his needs using a few simple buttons and a small LCD panel.

[Jeremy] says that the entire thing is “overkill” and that it is decidedly the messiest wiring job he has ever done. For something that was put together hastily in an afternoon, we think it’s just fine. The only thing we’re left wanting is some schematics and source code.

As far as the overkill comment goes, say it with me: There. Can. Never. Be. Too. Many. LEDs!

Stick around to watch [Jeremy] give a demonstration of how the system operates.

[via Adafruit blog]

Continue reading “Workshop Lights So Bright, They Will Give You Sunburn”

RGB LED Spectrum Analyzer Coffee Table

rgb_led_spectrum_analyzer_coffee_table

This year, students working for Texas Instruments as part of their Co-op program were challenged to construct a project around the company’s MSP430 microcontroller. A team of three students, [Max Thrun, Mark Labbato, Ian Cathey] decided to build something that would fit perfectly in any college student’s dorm room – an RGB LED coffee table.

We’ve covered RGB LED tables in the past, but as far as we can tell this is the first MSP430 based unit we’ve seen. Microcontroller aside, the table features a lot of items that are considered “standard equipment” when it comes to these sorts of living room LED installations. The trio installed 128 RGB LEDs into their table, isolating each one using a wooden grid, and used some frosted glass to diffuse the display a bit.

What really makes this table stand out is the software. The team wrote an application that creates a Fast Fourier Transform of whatever music is being played, in order to find beats and generate real-time visualizations for their table. The result is a pleasing display that’s sure to be a hit at parties.

Check out the video below to see their creation in action.

Continue reading “RGB LED Spectrum Analyzer Coffee Table”

Update: Arduino Shift Register PWM Gets Speed Boost

Community collaboration is a great thing. Take the Arduino PWM library for shift registers. Some folks at the Arduino forum pitched in and helped [Elco] trim off a bunch of clock cycles by using the Rotate Over Carry instruction. Now he’s reduced the overhead per shift-register from 108 down to just 43. So far this doesn’t mean more possible outputs – 768 is still quite a lot – but does it means better precision when max outputs are used. This effectively doubles the brightness levels for 768 LEDs from 16 up to 32.

We’re at a loss for what to link to here. [Elco] has a new page for the library. There’s the original forums thread but we didn’t see much of interest there. We found some stuff in the comments of this Reddit post. And of course, if you have no idea what we’re talking about go back and read the original feature.

Magic: The Gathering Nixie Life Counter

Someone sent in a tip that pointed us to this Magic: The Gathering forum thread where a user named [DistortedDesigns] made a life counter for Magic: The Gathering out of Nixie tubes. While there’s not many details for this build, it’s just too cool to be forgotten in a single forum.

The project began by etching some plexiglas. There’s some earlier examples of [DistortedDesigns]’ work that look very professional. The electronic are extremely simple – the 25 LEDs run off of 2 AA cells, and the nixies run off of 2 C cells. We were wondering when [DistortedDesigns] would drop the A-bomb, but it looks like this build doesn’t use a microcontroller.

Continue reading “Magic: The Gathering Nixie Life Counter”

Output Up To 768 PWM Signals From One Arduino

Here’s an Arduino library that will let you drive a very large number of LEDs. [Elco Jacobs], an electrical engineering student, is the author of the library. He has a work-study job that has him helping out others with their electrical projects and he was constantly being solicited for methods to control droves of light emitting diodes. This was the motivation that led him to produce the dazzling 16 RGB LED example seen in the video after the break.

His setup doesn’t use expensive LED drivers, but instead utilizes 595 shift registers which are both common and cheap. He calculates that it is possible to control up to 96 of these shift registers, each driving 8 LEDs, with reasonably satisfying results. This is thanks to his well-optimized code that manages to drive the clock pin of the registers at 1.33 MHz. This optimization is done by writing each command in assembly, which allows him to precisely count the cycles. Each individual pin takes 12-13 cycles to address, totally 9984 cycles at worst when addressing the maximum number of outputs.

[Elco] thinks this is as fast as he can make the routine run, but he is asking for help with testing. If you think you know how to squeeze out a few more cycles, make sure you join in on his forum thread.

Continue reading “Output Up To 768 PWM Signals From One Arduino”