Six Digit LED Clock

Got a bag of LEDs handy? Why not build a display with them? We’ve seen a lot of clocks that make use of LED modules but soldering your own is a fun pastime. [Vadim Suhovatih] did just that using 130 LEDs to build this clock. Each segment of the 7-segment digits consists of three LEDs in parallel which are switched by some 2N4401 transistors. An ATmega328 in the form of an Arduino controls the device with the aid of a DS1307 real-time clock for timekeeping and a 4017 decade counter to assist with scanning the display. Check out the demo after the break.

Continue reading “Six Digit LED Clock”

LEGO Printer Built Without NXT parts

[youtube=http://www.youtube.com/watch?v=zX09WnGU6ZY]

[Squirrelfantasy] built a printer using LEGO pieces. It’s not a Mindstorm project but instead depends on some type of development board and some auxiliary components on a protoboard. We couldn’t get a good enough look to tell exactly what makes up the electronics so start the debate in the comments. We feel this is a printer and not a plotter because the stylus moves on just one plane while the paper feeds past it but that’s open for debate as well.

Guess this answers the question of why aren’t we building our own printers? Some folks are.

[Thanks Haxorflex and many others, via DVICE]

RC Car Taunts Man’s Best Friend

[Arkos] gutted an RC car from his childhood and made it into a dog-taunting remote platform. An Arduino replaces the original circuitry with a Bluetooth module for connectivity. He uses an Xbox 360 controller and has added a small speaker to act as a siren. But for our money it’s the camera that makes this hack. It streams video back to a laptop and because it’s mounted on a couple of servos the left stick controls where the lens is looking. The next evolution should replace the Arduino for a standalone microcontroller but what he’s come up with as a first prototype is delightful. See Fido run in terror after the break.

Continue reading “RC Car Taunts Man’s Best Friend”

Modern Recordings On Wax Cylinder

If you thought you’d never have a chance to release your hit single on the wax cylinder think again. A band obsessed with the Victorian era did just that, having a DIY’er produce the cylinders for them. The story was covered by the BBC and includes a lousy attempt to build a phonograph to play back the recording. The video shows their craftsmanship (or lack of it) but it’s not even in the same realm as the masterpiece we saw last September. You do, however,  get to see the production equipment used at about 2:45 into the clip.

[Thanks Charles]

Stomp Box Synthesizer

[Brian McNamara] fed the output of his guitar pedal back into its input creating a looped synthesizer. He started with an effects pedal he made but now we think he’s ended up with an electronic stomp box. Check out the results in the video after the break. Now he needs to make the knobs foot-friendly so he can monkey with this while playing guitar.

Continue reading “Stomp Box Synthesizer”

JTAG Programming Over A Network

[Matt Evans] was running up against the common programming gotcha caused by disappearing parallel ports. For years he had used a JTAG parallel cable when working with FPGAs but recently realized he no longer owned any machines with that interface available. Instead of shelling out $50 for a USB programmer he a programming interface from an old router.What he’s doing is bit-banging using Linux. In this case it’s a router running a version of Linux which makes his setup Internet friendly but this could be done in the same basic manner on any Linux device with enough available I/O to connect to the device you are programming.

Beginner Concepts: Cascading Shift Registers

There’s a million tutorials out there describing how to use shift registers. If you’re just getting into embedded systems you should know how to use them as they allow you to take three microcontroller pins and expand them virtually without limits. This is due to the serial-in parallel-out nature of these integrated circuits. A key feature of these chips is the ability to overflow, or cascade to the next chip which is what provides the expansibility.

Protostack just published a tutorial that uses this hardware to interface sixteen LEDs using two shift registers. The explanation is short and to-the-point with easy to understand code examples. There’s also something to be said for their crisp and clean breadboarding work.

Take a look at how they do it and then use the concept to make a fancy clock or reduce the pins needed to drive a display.