Bluetooth Morse Code Keyboard For The Disabled

The team a Zunkworks wanted to build a device for people who can’t normally use a keyboard and mouse. The Bluetooth Morse code keyboard is what they came up with. This build gives the user full control over the keyboard and mouse using a single button or a sip & puff interface.

Continue reading “Bluetooth Morse Code Keyboard For The Disabled”

Google ADK Clones Pack A Few Extra Features, Hopefully Far Cheaper Than The Original

adk_board_clone

[charliex] from Null Space Labs wrote in to share a project that he and the rest of the gang have been working on over the last few weeks. The team has been remixing and building clones of the Google ADK demo board we saw earlier this year, in hopes of getting a huge batch prepped before Defcon 19.

Their version makes subtle changes to the original, such as extra header rows for Mega AVRs, higher quality RGB LEDs, and a nifty pirate-Android logo. They also added the ability for the board to send and receive IR signals allowing it to be used as a TV-B-Gone, as well as in more fruitful pursuits. The Arduino board used with the ADK has only undergone minor revisions, most of which were layout related.

[charliex] hasn’t mentioned a price for their improved ADK boards, but we’re guessing they will be substantially cheaper than the official Google version. In the meantime, check out their site for a boatload of pictures and videos of these boards undergoing various stages of construction.

Monitoring The World’s DNS Status Using A Display Straight Out Of WarGames

Nothing says Cold War like a map of the work with LEDs embedded in it. Throw in some analog dials for good measure and you’ve got a piece that would be comfortable mounted next the WOPR in everyone’s favorite ’80s-computers-run-amok movie. We think [Dima] really hit the mark when building this status panel for OpenDNS datacenter monitoring.

[Dima] works for OpenDNS and wanted to make something special for its upcoming 5 year anniversary. He’d already been toying with making boxes from laser-cut wooden pieces. This was just a matter of choosing a size that would fit the dials and leave a suitable area for a laser-etched map. Each of the twelve panel meters gets a PWM signal from the Arduino Mega that he used to bring the device to life. It shows a comparative server load for each data center based on the previous day’s numbers. There is an LED in the map for each of these centers. Right now they’re all red, but he used RGB LEDs and plans to upgrade the capability soon. He should have no problem doing this as he sourced some TLC5940 drivers to extend his I/O capabilities.

Don’t forget the check out the clip embedded after the break. Continue reading “Monitoring The World’s DNS Status Using A Display Straight Out Of WarGames”

MIDI Air Drums Let You Play Anywhere

[Maayan Migdal] wrote in to share a really cool drum kit he constructed that has one special twist – no drums at all. Using a simple MIDI device and an Arduino, his “Air Drums” look pretty sweet.

The hack makes use of a pair of garden rakes, which serve as his drum sticks. The rakes were cut down and modified to allow the addition of accelerometers and some USB cables. The left stick contains a single accelerometer for registering hi-hat hits, while the right stick is armed with a pair of the modules, which are used to trigger snare and crash symbol strikes. He modified a pair of sandals to fit better while drumming before adding a sensor to each shoe. The left sandal contains an accelerometer to register bass drum hits, while the right shoe uses a light sensor to simulate the use of a hi-hat pedal.

We think that the results are awesome, but feel free to check out the video below to see what we mean. If Guitar Hero wasn’t dead in the water on hiatus, we think this sort of setup would make a great replacement for the flimsy drum set that comes with the game.

Continue reading “MIDI Air Drums Let You Play Anywhere”

Automated Water Distiller Gets An Overhaul

automated_water_distiller_stillduino_v2

One thing we love about the hacking community is the drive that most people have to revamp and rework their “finished” projects. A few weeks ago, we wrote about a water distilling rig that [Kyle] hacked together, which allowed him to automate his distillation process. He took his project back into the workshop and tweaked a few things, giving us the heads up when he was finished.

He got his hands on a new distillation unit and decided that he wanted to transfer over his automation setup. He cleaned things up by ditching most of the components from his first distiller, including the toy clock tower dial (which we happened to think was pretty fun). The same relays and Arduino were used in the second version of the still, but he reworked all of his code to make use of his new control interface.

The new model sports an LCD panel that allows the user to interact with the machine via a push button rotary encoder. Now he can easily navigate through a series of menus that enable him to set the distillation quantity and start time, leaving the distiller to do the hard work. The still also does a quick safety check each time it starts up, to ensure that things are in good working order before firing up the heating element.

[Kyle] says he will continue to tweak the distiller, though we think it looks great already.

Continue reading to see a quick video of his Stillduino v2 in action.

Continue reading “Automated Water Distiller Gets An Overhaul”

scout_diy_quadcopter

How To Build Your Own Quadcopter, Step By Step

DIY-er [Russell] wanted a quadcopter, and like many people out there, he knew the satisfaction that would come from building it himself. Rather than purchase a kit or follow a set of online instructions, he spent a lot of time researching quadcopters, and eventually put together a thorough tutorial himself.

His Arduino-based quadcopter is named Scout and runs about $1,000 to $1,200 depending on which parts you choose to buy. [Russell] has a complete parts list available on his site, including plenty of alternate component choices for builders on a budget.

He covers the construction process in great detail, discussing frame fabrication and component placement as well as how to program the Arduino for the copter’s first flight. He also takes the time to break down his component list item by item to explain how each piece is part of the greater puzzle, which is great for first time builders.

We love seeing this level of detail when discussing a build process, and as you can see by the video embedded below, his quadcopter looks great!

[Thanks, Willow]

Continue reading “How To Build Your Own Quadcopter, Step By Step”

Update: Arduino Shift Register PWM Gets Speed Boost

Community collaboration is a great thing. Take the Arduino PWM library for shift registers. Some folks at the Arduino forum pitched in and helped [Elco] trim off a bunch of clock cycles by using the Rotate Over Carry instruction. Now he’s reduced the overhead per shift-register from 108 down to just 43. So far this doesn’t mean more possible outputs – 768 is still quite a lot – but does it means better precision when max outputs are used. This effectively doubles the brightness levels for 768 LEDs from 16 up to 32.

We’re at a loss for what to link to here. [Elco] has a new page for the library. There’s the original forums thread but we didn’t see much of interest there. We found some stuff in the comments of this Reddit post. And of course, if you have no idea what we’re talking about go back and read the original feature.