Destroying An Arduino’s EEPROM

We’ve seen projects test the lifespan of an EEPROM before, but these projects have only tested discrete EEPROM chips. [John] at tronixstuff had a different idea and set out to test the internal EEPROM of an ATmega328.

[John]’s build is just an Arduino and LCD shield that writes the number 170 to memory on one pass, and the number 85 on the next pass. Because these numbers are 10101010 and 01010101 in binary, each bit is flipped flipped once each run. We think this might be better than writing 0xFF for every run – hackaday readers are welcomed to comment on this implementation. The Arduino was plugged into a wall wart and sat, “behind a couch for a couple of months.” The EEPROM saw it’s first write error after 47 days and 1,230,163 cycles. This is an order of magnitude better than the spec on the atmel datasheet, but similar to the results of similar experiments.

We covered a similar project, the Flash Destroyer, last year, but that tested an external EEPROM, and not the internal memory of a microcontroller.

Check out the hugely abridged video of the EEPROM Killer after the break.

Continue reading “Destroying An Arduino’s EEPROM”

Home Made BlinkM Units

[Stephen] wrote in to show us this fun LED wall he constructed in his house. He says he was inspired by this project, but found the cost of the BlinkM units from sparkfun to be out of his price range. He really liked how they worked though, so he downloaded the schematic and firmware and built his own. He was able to fabricate 130 of his own for roughly 250 euros as opposed to the 1,452 euro price tag his sparkfun shopping cart had. That’s not a bad deal at all if you’re willing to invest the time in making your own PCBs and assembling the units. You can follow along on his site to see the entire construction process, as well as some pictures of his glass wall in action. The videos, however, aren’t loading for us. Great job [Stephen]!

Optimizing Code For PWM Efficiency

For some projects, it’s okay to have a microcontroller twiddling it’s thumbs most of the time. When a project requires the cpu to do just one thing over and over, there’s no loss with inefficient code – it either works or it doesn’t. However, if a project requires a microcontroller to do several things at once, like reading sensors, dimming LEDs, and writing serial data out, cpu utilization can become an issue. [Robert] wasn’t happy with the code he used to control a string of LEDs, so he rewrote his code. With the old implementation, [Robert]’s code used 60% of the cpu time. With the new and improved code, the cpu was only busy 8% of the time.

The code works by using a hardware timer to trigger an interrupt. After calculating the next time it should run again, and changing the state of the data line, the code just sits quietly until it’s needed again.

It’s not a pretty hack, or even one you can hold in your hands, but [Robert]’s determination in getting a μC to do what he wants is admirable.

Japanese Maid Mods A Furby

This video has been floating around the web recently and we thought that some of you might enjoy it. After a quick google search, we found out that this is [Julie Watai], a singer/model who also enjoys hardware modification. In this video, she’s doing a tutorial on how to circuit bend furbies. No, we have no idea why she is dressed like a maid.  This immediately brought to mind that Bjork video we saw a few years ago. Enjoy.

Bluetooth Media Remote In An N64 Controller

[Phik] wrote in to share his very first microcontroller project with us. He built a bluetooth remote in an old Nintendo 64 controller to control an audio application on his computer. He had been building up the individual modules with the controller in mind for some time, but initially had no idea what kind of enclosure to put it in. After a failed attempt at stuffing it into an XBox controller(surely there was enough space), he realized he had a broken N64 controller lying around that he cold use. We think he did a fantastic job of mounting it, it looks almost like a commercial product. He documented the construction and testing of each individual module. You can find each of those broken into their own post on his site by checking out the archives. Great job [Phik], especially for your first project!

Continue reading “Bluetooth Media Remote In An N64 Controller”

Emulating A Marching Band With Wearable Instruments

[Scott] is a design and technology master’s student who just came up with The Imaginary Marching Band – virtual band instruments you can wear on your hand.

Taking inspiration from Minority Report and the NES Power Glove, the system is able to emulate 6 instruments at this point – A trumpet, trombone, tuba, snare drum, bass drum, and cymbals. The glove itself reads data from a variety of sensors and passes that onto an Arduino Uno which sends serial data back to a computer. This data is then parsed by a Serial – MIDI converter, and can then be played back through a sampler, synthesizer or piped into your sequencer of choice. Happily, [Scott] will be designing custom PCBs for his gloves to cut down on space and weight, and he’ll also be making his project open-source eventually.

[Scott] has a kickstarter page for his project, and so far he’s been on track towards getting this project funded. Check out a demo after the break.

Continue reading “Emulating A Marching Band With Wearable Instruments”

Stress Testing Robots…with Baseball Bats

robot_stress_test

When you are working on constructing the first Cyberdyne Systems Model 101 prototype a super-robust robotic arm, you’ve got to test it somehow, right?

You probably recognize the robot being abused in the video below, as we have talked about the construction of its hand once once before. The German Aerospace Center has been working on the DLR Hand Arm System for some time now, and are obviously really excited to show you how their design performs.

In case you are not familiar, the arm you see there uses 52 different motors, miniaturized control electronics, and a slew of synthetic tendons to behave like a human arm – only much better. The system’s joints not only provide for an incredible amount of articulation, they are specially designed to allow the unit to absorb and dissipate large amounts of energy without damaging the structure.

We think that any human would be hard pressed to retain their composure, let alone be able move their arm after suffering a blow from a baseball bat, yet the robot arm carries on just fine. It’s awesome technology indeed.

Continue reading “Stress Testing Robots…with Baseball Bats”