1 Watt Laser Engraver

This laser engraver was built using printer parts, a CD-ROM carriage, and some homebrew electronic boards. The laser diode is a 1-Watt model similar to what we saw used as a weak laser cutter back in August. When the width of the material changes the focus of the laser is affected so the diode was mounted on a CD-ROM carriage (in the Z axis) for easy adjustment. The X and Y axes are made using parts from Epson Stylus 800 and Epson Stylus Color II printers. After the break we’ve embedded a video of the machine engraving some wood using EMC2 software on an Ubuntu box. It also boasts the ability to cut paper and some plastic but it can’t compare in power to a CO2-based unit.

Continue reading “1 Watt Laser Engraver”

Python Library For Emotiv EEG

Want to control things with your mind? The Emotiv EPOCH EEG is one of the best pieces of hardware you can get that is ready to be hacked into your project. Too bad the entry-level SDK will set you back $500. Or you can take advantage of [Cody Brocious’] work by using his Emotiv Python Library. He sniffed around the data coming in over the USB connection and discovered that it’s encrypted. With a bit of trickery he extracted the key and built the 128-aes decryption routine into his package. So far this just pulls raw data from the unit so it’s up to you to figure out how to properly filter the signals and differentiate which sensor corresponds to each data stream. But it’s a start, and hopefully it’ll lead to more mind controlled doo-dads.

Analog Style LED Clock

Almost named this LED analog clock, like others have... the first comment would have corrected us.

We spied this pretty LED clock this morning and were impressed with how cleanly it was constructed. It was built to mimic an analog clock, so you have the typical hour markings and a minute and hour hand. The minute hand stays in each position for roughly 2 to 3  minutes. The brains behind all those LEDs are a PIC 16f877 with a DS1307 realtime clock. Over all, [WellyBoot] soldered 169 LEDs into place, and did it in a nice clean fashion. We suspect that if we had done it, it would resemble a spaghetti pile. You can see the schematics and build pictures on his site, or watch a video of it in action after the break.

[via HackedGadgets]

Continue reading “Analog Style LED Clock”

unbelievably simple

Home Made T.E.A. Lasers

[Nyle] was interested in building lasers at home but felt that the exotic parts list was just too daunting. That was, until he discovered T.E.A. lasers. T.E.A. lasers can be constructed from a few bits of aluminum and some high voltage. They emit UV light, as you can see in his examples where he shoots them through a jar full of water with highlighter ink mixed in.

He has posted several variations of different sizes as well as numerous images of them in action. You can see a video of one in action after the break. We also have to point out the fantastic music in the video. It reminds us of those school videos left over from the 50s.

Continue reading “Home Made T.E.A. Lasers”

Building A Power Supply Around A DC-DC Converter

The EEVblog is on a roll with interesting topics lately. In the latest episode [Dave] takes us through the nitty-gritty of switch mode power supply design. Using DC-DC converter IC’s in not especially hard. The datasheets tend to have fairly good usage schematics but there’s always a bit of heartache that goes into figuring out which external components will make for an optimal design. Get your calculator out and, in the video after the break, he’ll walk you through choosing component values based on the formulas for the MC34063 converter chip.

[Dave] makes the point that this is an extremely common chip, available from several manufacturers, and often found in consumer electronics. In fact, the switchmode supply hack from last month was using a regulator based around the MC34063. So you can buy it or scavenge for it. One thing to note though, we checked Mouser and Digikey and they’re pretty short on these chips right now. Plan your projects accordingly.

Continue reading “Building A Power Supply Around A DC-DC Converter”

Small CNC Gadget Draws What It Hears

This art piece makes drawings based on sound. [Mario Marchese], who is responsible for those illusion props back in february, built this little guy out of a bunch of junk he had lying around. It features four microphones that listen to ambient sound and feed the signal through some LM386 audio power amplifiers. The output is translated into forward, backward, left, and right movements of the writing platform while the pen is fixed in the same position. Despite what we said in the title of the post this isn’t strictly a CNC machine, but more the primordial cousin of one.

Cheap Cable Reused To Add USB To Your Project

You get what you pay for. [Jkx] wanted to see how a USB to RS232 cable could be sold for just $1.70 and found out that it’s not actually RS232 compliant. The cable communicated as TTL levels, not the 12V expected of RS232 (although it can handle 12V incoming). He didn’t really want to use them for their intended purpose anyway. By betting rid of the DB9 plug and reusing the enclosed circuit board he now has a really cheap way to interface a microcontroller with the Universal Serial Bus. He worked out a couple of short subroutines that take care of receiving and sending data over the connection.