Persistence Of Vision Helicopter Blades With RGB LEDs

A user named [BOcnc] on the rcgroups forums just posted his RGB POV helicopter blades.

The two blades are attached to the heli just as any other whirlygig. The electronics, though, are mounted underneath the blade with a battery pack. We covered a build last year that demonstrated weight added to a spinning blade won’t tear everything apart, but that build used only blue LEDs. This build is full color and makes us feel like we’re living in a cyberpunk future populated by Recognizers and Daft Punk.

The images are stored on an SD card that receives data from a USB port. The microcontroller is a PIC32, and from what we can assume from the schematics, the RPM of the blades is measured by an on-board hall effect sensor (don’t quote us on that, though). There’s no hope of a commercial release from [BOcnc], though. He can’t find anyone to manufacture the blades, and the entire build was too expensive. It sure looks pretty though, so check out the video of it after the break.

Continue reading “Persistence Of Vision Helicopter Blades With RGB LEDs”

Control LED Lighting With An Old Stereo Receiver

stereo_controlled_home_lighting

[Marklar] needed an IR receiver for a project he was working on, and his local electronics store was fresh out. He dug through his junk pile and found an old stereo receiver, so he decided to pull the IR module from it before tossing it out. Once he had it taken apart, he figured that he could utilize the wide array of electronic components he found inside, and set off to start a new project.

The control panel housed the components which interested him most of all. Using an Arduino, he was able to easily interface with the rotary encoders as well as the buttons, giving him a cheap and easy way to control his home lighting system. With a bit of programming, he was able to map lighting presets to various buttons, as well as use the rotary encoder to control the LEDs’ brightness and color. As an added bonus, he kept the IR receiver intact and can control his setup wirelessly as well.

Check out the video we have embedded below to see his scavenged control system at work.

[via HackedGadgets]

Continue reading “Control LED Lighting With An Old Stereo Receiver”

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.