Airport Express Speaker Mashup

[Wei] salvaged the internals from an Airport Express that had a blown power supply. From there he built this streaming music box. The case is from an IKEA clock with the face removed. He added some decorative fabric around a grill to make an acoustically transparent front panel. Inside you’ll find the Airport guts connected to a USB charger (replaces the dead PSU) and a set of powered stereo speakers. This simple mashup looks good and frees up space in your junk-parts box.

Hydropower Generator

[Paul] wanted to have access to renewable energy at his cabin. It’s a relaxing place, nestled in a tall forest that shelters him from the sun and wind. This also means that solar and wind energy aren’t an option. But there is a stream running through the property so he decided to build his own version of a small water-powered generator.

He tapped into a reservoir about 200 feet upstream, split the flow into four smaller hoses, and channeled that into a five-gallon bucket. Inside the bucket you’ll find a Pelton wheel he built which turns a low-RPM generator. He manages to generate 56 VDC at 10 A with this setup, more than enough to charge a bank of batteries.

He does a great job of explaining his setup in the video after the break. If you’re looking for other ideas of how to cut down on your environmental impact check out this compost-powered water heater.

Continue reading “Hydropower Generator”

IPhone Drum Machine Isn’t Synthesized

There was a time when a drummer would grab some sticks and lay out a groove using the items around him as instruments. [Lsa Wilson] would rather not work quite that hard and has chosen to do the same thing by tapping on an iPhone screen. As you can see in the clip after the break, many of the items in the room around him have been fitted with solenoids. Each is connected to an Arduino which is then controlled by Open Sound Control and interfaced with the iPhone via TouchOSC. We love the sounds being created and can’t help being reminded of the Multixylophoniomnibus.

Devote Your Life To Replicating A Lightsaber

Life-sized Star Wars replica props, it’s one way to keep the ladies away. But if you’re going to make them, you should do it right. [Bradley W. Lewis] spent some serious time getting this [Obi-Wan Kenobi] lightsaber right. The seven-page build log provides plenty of eye-candy. We especially enjoyed the machine and coloring of he grenade-fin portion. The LED ladder that lights the blade is also quite interesting. For the icing on the cake he incorporated a high-performance speaker connected to the sound board from a Hasbro Force FX which provides that classic swashbuckling sound from a galaxy far, far away.

LED Goggles Make You Trip Out?

Who knows if this works and should you really want to try to induce hallucinations by flashing colors in front of your eyes? But we do love the zaniness of the project. [Everett’s] homemade hallucination goggles come in two flavors, the small swimming-goggle-type model and the heavy-duty trip visor made from welder’s goggles. Each brings together the same components; a half ping-pong ball for each eye to diffuse the light from an RGB LED. The system is controlled by an Arduino with some buttons and 7-segment displays for a user interface. Put this together with some homemade EL wire and you’re ready for Burning Man.
[Thanks Evan]

Building A Laser Cutter From A Weak Laser

We covet laser cutters and this diy model with a 1 Watt IR diode may be well within our price range. Most commercially available laser cutters, and some homemade ones, work in the 20-100 Watt ranges, using a CO2 laser. They have more than enough power to cut right through a lot of materials so how can a 1W diode compare? It seems that the weaker laser is still quite powerful right at its focal length, so moving that point along the Z axis will let you burn away a larger depth of material. The test rig seen above uses optical drive components for the three axes and managed to cut a rectangular piece out of the black plastic from a CD case.

This isn’t [Peter’s] first try with CNC lasers. He’s the one that’s be working on an open source selective laser sintering platform.

[Thanks Osgeld and Vesanies]

Hacking A Code-protected Hard Disk

Our friend [Sprite_TM] took a look at the security of a code-protected hard disk. The iStorage diskGenie is an encrypted USB hard drive that has a keypad for passcode entry. After cracking it open he found that the chip handling the keypad is a PIC 16F883 microcontroller. He poked and prodded at the internals and found some interesting stuff. Like the fact that there is an onboard LED that blinks differently based on the code entered; one way for the right code, another for the wrong code of the right number of digits, and a third for a wrong code with the wrong number of digits. This signal could be patched into for a brute force attacking but there’s a faster way. The microcontroller checks for the correct code one digit at a time. So by measuring the response time of the chip an attacker can determine when the leading digit is correct, and reduce the time needed to crack the code. There is brute force protection that watches for multiple incorrect passwords but [Sprite_TM] even found a way around that. He attached an AVR chip to monitor the PIC response time. If it was taking longer than it should for a correct password the AVR resets the PIC before it can write incorrect attempt data to its EEPROM. This can be a slow process, but he concluded it should work. We had fun watching the Flash_Destroyer hammer away and we’d like to see a setup working to acquire the the code from this device.