Projects involving Conway’s Game of Life and utilizing a Nokia 3310 screen are quite popular with electronics hobbyists. [Droky] put these two together and went one step further by adding capacitive sensors to control the Game of Life. His work is a great example of how to use the Atmel QTouch capacitive sensor (QT100a datasheet). This chip does the heavy lifting that we’ve seen in other touch sensitive solutions. It operates from 2V-5.5V, requires only three capacitors and a resistor, has a one pin active high output, and sells for around $1 in low quantities. One thing [Droky] overlooked…
Capacitive buttons control all life
AVR Dragon wiring alternative
We love our AVR Dragon programmer. It is a small board with a lot of functionality: in-circuit serial programming, JTAG, debug wire, and high voltage serial programming. Unfortunately, out of the box it is not quite ready for action. The Dragon ships with an unpopulated prototyping area and missing a pin header for the HVSP. For most people this means soldering on pin headers and a ZIF socket then jumpering between the various programming headers and the header for the socket. Tired of working with jumper wires, [Jussi] designed a small PCB to make the connections (original link in…
Radio controlled beetle flight footage
Earlier this year we were amazed when University of California researchers controlled a beetle via electrical implants. The video available at the time of the original report showed beetles tethered in place while electrical stimuli was applied via the chip. New video of free flight is has now been posted. Although the motion is rather sporadic, it is obvious that simple commands to start flight, stop flight, and turn left or right are having their intended effect. Check out this cyborg action after the break. Is DARPA one step closer to unleashing legions of insect warriors on unsuspecting masses?…
Eee PC bios resurrection
Hot on the heels of our post about reading passwords from EEPROM, [n0th1n6] tipped us off about a similar hack used to resurrect an Eee PC from a bad bios flash. After discovering that a factory repair for a dead bios costs about $200, [CutenaCute_7] took on the challenge herself. She disassembled the computer and desoldered the bios chip from the board. After writing a program to flash the chip using C#, she temporarily soldered jumpers to make sure the flash worked. Looks like this is a zero cost hack, plus the time savings from not having to ship…
Steal the administrator password from an EEPROM
Did you forget your hardware-based password and now you’re locked out? If it’s an IBM ThinkPad you may be in luck but it involves a bit more than just removing the backup battery. SoDoItYourself has an article detailing the retrieval of password data from an EEPROM.
The process is a fun one. Disassemble your laptop. Build a serial interface and solder it to the EEPROM chip where the password is stored. Connect this interface to a second computer and use it to dump the data into a file. Download a special program to decipher the dump file and dig…
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…
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…
Laptop running on a sealed lead acid battery
[Viktor's] laptop needed a new battery; he had the trade off between carrying around a cheap but heavy sealed lead acid (SLA) battery, or buying an expensive but light Li-Ion battery. Figuring his old laptop was pretty heavy already, and having an unused SLA available, re-purposing it for his laptop wouldn’t be too much of a hassle. Using a boost converter he built out of a custom dip MAX668, he is able to output the necessary 5 amps required. An MC 34161 voltage monitor chip is planned for future revisions, but he’s currently running it just fine. Check out…
Double the RAM on D-Link router
[Pelaca] upgraded the RAM on his D-Link DIR-320 router from 32MB to 64MB. This hack is simple enough: swap out the existing RAM chip for another one and change the bios to make use of the upgrade. The actual execution is not that simple because of the pitch of the TSOP II package; you’ll need to bring your mad soldering skills to pull this off.
This reminds us of when upgrading original Xbox RAM to 128MB was all the rage. It involved the same type of hack, adding four memory chips to unpopulated positions on the motherboard. The forums…
Mail-E email checker
[Totoro] sent in this cool little email notification device he made. Using a paper model of Wall-E, he added some servos and connected it to his computer using a PIC. Mail-E has independent arm rotation and head rotation. He admits that the PIC processor is major overkill and plans some upgrades such as making it wireless and using a little better suited chip to control it. Not bad for a proof of concept.
Software pulse width modulation
Pulse Width Modulation is a topic that tends to give a lot of beginners trouble. [Daqq], whose nixie plasma ball we covered a few days ago, has a simple but effective PWM project that you should take a look at. The circuit used 9 LEDs clustered together into 3 sets of RGB modules and connected them to an AVR ATtiny2313 through some current limiting resistors. Most of the time the PWM function of the AVR’s timers would be used to generate the signal but this application calls for 9 signals which is more than can be produced by this…