Flash an Arduino from an SD card

[Kevin] has been working on reverse engineering the protocol used by the Arduino IDE and porting it to the Arduino platform. Now that his BootDrive project is nearing completion, he’s ready to give every Arduino the ability to program another Arduino over an SD card.

BootDrive isn’t terribly different from using an Arduino as an ISP, only now AVRdude runs on the Arduino itself and no computer is required to put new firmware into the target Arduino.  [Kevin] attached a MicroSD breakout board to an Arduino-compatible clone. When the clone starts up, it searches the SD card for a file called ‘program.hex.’ This file is sent over to the target Arduino and the new firmware is installed.

While it may not be extremely practical if you’ve only got a few Arduinos that never leave your workbench, we’re thinking this would be an invaluable tool if you need to update the software on a board already ‘in the field,’ serving as a weather station or homemade game camera. [Kevin] put up a demo of his BootDrive project; you can check that out after the break.

[Read more…]

Wire loop game penalizes for touches by shrinking your wand

We really like this take on a conductive wire maze game. It’s the result of a 48-hour hackathon in Belgium which required that all projects stemming from the event use an Arduino. We think [Jan] and [Kristof] made perfect use of the prototyping device in the time allotted. The event organizers thought so too because this took top prize.

As you can see, the gaming area is two-sided, and consists of some copper wire bent into a maze. There’s a wand made out of a PVC pipe with a loop of braided cable running through it. The loop surrounds the copper track and each player needs to get from the beginning to the end, touching checkpoints along the way without coming in contact with the track.

Pretty standard, right? Well there’s a twist. At each checkpoint the Arduino signals a servo motor in the wand to make the loop smaller. Add to that a penalty/reward system: if you touch the track, your loop gets smaller and your opponent’s loop grows larger. Don’t miss the head-to-head action after the break.

This reminds us of that wire-based cave racer from a few years back. [Read more…]

Arduino lawn care is web-controlled

[Joe Fernandez] is fairly new to the hardware side of the hobby, but he seems to have easily found his way on this project. He wanted to build his own web-bridge for his Toro lawn sprinkler system. He pulled it off with style and shows off the spoils of his work in the clip after the break.

He started with an Android ADK, crafting some web magic to use a REST interface and JSON packets as a communications scheme. This makes it possible to control the system from anywhere as long as you have an Internet connection. The rest of the hardware evolved as his needs became clear. The first hunk was to add an Ethernet shield so that he didn’t need to have his Android phone connected to the system for it to work. From there he needed to control the solenoid valves on the system and grabbed three relay shields from Seeed Studios for this purpose.

As you can see, all of that hardware has a home on a polyethylene cutting board. The terminal blocks at the bottom keep the connections nice and neat as they interface with the sprinkler system. We were happy to hear that the stock controller still works, this add-on doesn’t permanently alter it in any way. That’s going to be important if he ever wants to sell the home.

Still using a traditional sprinkler instead of an in-ground system? Perhaps this variable range hack is for you.

Monitoring software builds with a traffic light

[JD] at isotope11 was looking for a way to get instant feedback whenever a developer broke a piece of software they were working on. After finding a 48 inch tall traffic light, he knew what he had to do. Now, the entire development team knows the status of their code from a traffic light hanging in the corner.

isotope11 runs a continuous integration server to do the quality assurance on their software projects. It’s a lot more flexible than the ‘compile and pray’ setup we’re used to, but then again C isn’t very well suited to test-driven development. When one of [JD]’s developers breaks a piece of code, the CI server will send a warning to an Arduino where all the electronic magic happens.

To light the traffic light, [JD] used a few relays to drive the 120 volt bulbs in the traffic light. The traffic light is very easy to read – red means something is broken, green means everything is alright, and yellow means a test suite is being run.

Check out the video of [JD]’s TDD visualization after the break.

[Read more…]

POV clock spins light filter instead of LEDs

This hard-drive based POV clock is a treasure trove of great design choices. Now, we’ve seen a bunch of spinning clock builds. Several of the hard drive versions use slits cut in the platters to create a display by illuminating an LED behind those slits at just the right moment. This is a similar idea but [Jason Hotchkiss] ditched the platters all together and replaced them with a light filter. The filter disc has digits 0-9 as well as a colon (not seen above because the colons blink each second). As this disc spins, the Arduino compatible controller lights up LEDs in the eight digital positions to illuminate the correct number.

The filter is made from an etched copper-clad disc. This is a great choice because the fiberglass substrate is strong, light weight, translucent, and available. The filter idea also means you don’t need to get power or data to a spinning platform. [Jason] has also designed a very impressive controller board that is the same size as the footprint of the laptop hard drive he’s using. Check out the video after the break to see his description of what went into the hardware choices he arrived upon. [Read more…]

The Ultimate Breadboard – a prototyping station that has it all

ultimate-breadboard

[Claudio] was working on a homebrew oscilloscope project when he started thinking about how unsuitable a standard breadboard is for a large-scale project. Rather than adding components on top of components until they became what he lovingly calls a “fragile, unforgiving crapstack”, he decided to build himself the Ultimate Breadboard.

He packed so much into his design, that it’s honestly hard to know where to begin describing it. Aside from an appropriately large breadboarding surface embedded in the center of the console, he added a power supply to the left hand side, which sits just below an Avr-Net-IO board. The right side of the console features an Arduino NG, and a pair of level converters. He also added some LED-based VU meters, a couple of 7-segment displays, an LCD display, an analog voltmeter, along with plenty of I/O connectors.

The Ultimate Breadboard might look a bit daunting at first, but it seems like an awesome setup on which to do any sort of prototyping. Be sure to check out the video below for more details and to see [Claudio] give a tour of the device.

[Read more…]