[Taufeeq's] Grandmother needed to be able to call her family members but due to ailing eyesight and memory this was a difficult task. He decided to help her with this by building a telephone that will auto-dial a number at the push of a button. [Taufeeq] built a case to hang on the wall which houses a hook for the receiver and two auto-dial buttons. The buttons are lighted and loosely based on the LED push buttons we covered in January. Housed in a separate box are a microcontroller and a dual tone multiple frequency IC used to dial…
Easy dial telephone
Football Hero
For Kasabian’s new single Underdog, they decided to do something original. After dreaming up a Guitar Hero style controller powered by soccer football players, they set out to make it happen. Using 5 wall mounted pressure sensors connected to a microcontroller, they hooked up the rig to a computer running Frets on Fire (an open source Guitar Hero clone) with a custom version of their single. After an afternoon of practice, the team was able to 5 star the song, and while this isnt the only or most complex Guitar Hero hack, we would love to have this in…
Halloween Props: Pie of Sauron
[Richard] combined creative carving with vacuum tube electronics for a unique pumpkin offering. He used the stencil-and-cut method of carving, making use of an inexpensive carving kit for great results. He salvaged an LED module from a flashlight to provide the internal illumination, but it’s the center feature that we like the best. [Richard's] used a glow-transfer counting tube, or dekatron, which provides something like a circular cylon eye to the project. There’s a video of this after the break.
You might not have access to a wicked-looking dekatron but we’re guessing you’ve got a microcontroller and some LEDs…
Tool Tip: microcontroller timer calculator
In life and embedded systems timing is everything. Give [Frank's] web-based timer calculator a try. Set your system clock resolution (in hertz making sure you account for any system clock divider), select your timer resolution and prescaler, then calculate based on desired ticks, overflows, or real time. He’s built this with the AVR chips in mind but it should be handy for any family of microcontrollers.
Of course none of this is rocket science, but if you’re trying to use one timer for two differently synchronized events this can save you a lot of trial and error time.
Word clock: tell the time with words
[drj113] posts his cool word clock. After seeing a similar clock on an industrial design website, he set out to make his own version. He made custom pcbs with the toner-etch method. The front is a solid piece of copper clad board and the light shines through the etched areas. It’s powered by a PIC microcontroller and uses approximately 120 ultra bright LEDs. [drj113] has all of the circuit board diagrams, silkscreens, etch negatives, and code on the intructable so you can build your own.
Twitter, talking fish, and more
[Dan Ros] sent in his hack of a twitter talking Big Mouth Billy Bass. Originally he simply had an mbed micrcontroller and an SD card with some wav files allowing Billy to say classic quotes. Wanting to go further however, they used the mbed’s HTTPClient library to grab Twitter updates, and then have Billy say them out loud! Check out some other cool projects the mbed team has in the cookbook.
But wait, whats an mbed? We didn’t have a clue either!
Some researched reveals it is a powerful new microcontroller and prototyping board. With some features such as…
Vintage Hack – Game Boy Camera
Back in 2005, a member of a French robotics team named [Laurent] wrote a wonderful how-to that we somehow missed on using the Game Boy Camera as a vision device for a robot. The images above are actual shots from his project. The Game Boy Camera features a stunning 128×123 pixel resolution in a gorgeous 4 color gray-scale palette. Possibly the most attractive feature of this hack is that it is still possible to get a hold of these cameras for under ten dollars on ebay.
He connected the camera sensor to an Atmel AT90S4433 using a combination of…
Universal credit card in the palm of your hand
Do you remember the magnetic card spoofer in Terminator 2? It was a bit farfetched because apparently the device could be swiped through a reader and magically come up with working account numbers and pin numbers. We’re getting close to that kind of magic with [Jaroslaw's] card spoofer that is button-programmable.
Building off of a project that allows spoofing via an iPod and electromagnet, [Jaroslaw] wanted something that doesn’t require a computer to put together the card code. He accomplished this by interfacing a 20-button keyboard and a character LCD with an AVR ATmega168 microcontroller. Card codes can be…
Hacking USB serial port adapters
The folks at Openschemes.com have written up an article on how to convert a USB serial port adapter to a low voltage serial interface for interfacing with microcontrollers. Though you can always just buy one, this is a fairly quick and cheap solution, especially if you are in a pinch or don’t have access to a retailer. The specific models you should watch for, are the ones with two chips, a microcontroller and a line translater.They go through the process of finding exactly where to patch in to add an extra interface. It only takes a couple wires and…
Introduction to FTDI bitbang mode
It was an interface that launched a thousand hacks. Near trivial to program, enough I/O lines for useful work, and sufficiently fast for a multitude of applications: homebrew logic analyzers, chip programmers, LCD interfaces and LED light shows, to name a few.
Today the parallel printer port is on the brink of extinction (and good riddance, some would say). Largely rendered obsolete by USB, few (if any) new peripherals even include a parallel connector, and today’s shrinking computers — nettops, netbooks, media center PCs — wouldn’t have space for it anyway. That’s great for tidy desks, but not so…
Touch sensitive keypad
[Viacheslav] built a keypad that uses human capacitance to detect key presses. Unlike normal keys which close a physical connection, his project detects touch through the PCB substrate. He uses the ADC capabilities of an AVR ATmega8 to measure a change in capacitor charges for each sensor in the keypad.
He’s posted the schematic, Eagle files, and source code with his writeup. He also points to a document on the theory behind this: QMatrix Technology White Paper (PDF). We’re impressed at how simple the circuit is: a microcontroller, capacitors, resistors, and a homemade PCB.
AVR controlled Rubik’s cube solver
[Andrius] just sent in his robot Rubik’s cube solver. It isn’t as fast as the solver we saw last year but it also doesn’t require as many parts either. This project utilizes two claws, each actuated by just two servo motors. The thinking is done by a PC which calculates the necessary moves to solve the cube. Each instruction is then passed via USB to the AVR ATmega16 microcontroller that is responsible for the servo operation.
Right now it looks like the colors for each starting face have to be entered manually before a solution is calculated. We think…