An Exercise In Servo Voice Control With Android

voice-controlled-android-lock

[Shazin] had some free time on his hands, so he settled in to do something he had been meaning to for a while – learn Android programming. He went an indirect route, and ended up using the Scripting Layer for Android (SL4A), which gave him a head start on the process. Sitting in between the Android API and scripting languages such as Python, SL4A allowed him the ability to apply something he was already familiar with to the Android environment.

He thought it would be cool to try building a door entry system which relied on voice commands to lock and unlock. Using the Google Voice API for Android and an Arduino, he built a small Python application that allows him to toggle a servo simply by talking into his phone.

The application on his phone communicates with an Arduino over WiFi, once Google Voice has decoded the command [Shazin] is giving. The Arduino controls a servo, which in theory could control the locking mechanism on a door.

After a bit of tweaking and some added security, his proof of concept could definitely come in handy.

Check out the short video below to see [Shazin’s] voice-controlled servo in action.

Continue reading “An Exercise In Servo Voice Control With Android”

Nuclear Taco Helmet Measures Reaction To Spicy Food

Apparently there was a Nuclear Taco eating contest at the 2010 Codebits Conference. The team from altLab, a Hackerspace in Lisbon, didn’t partake but the discomfort of those that did was burned into their memory. This year, the altLab members decided to build a spciy taco monitoring helmet as part of the conference’s 48 hour hacking competition.

The helmet was inspired by those beer helmets that let you suck down two head-mounted cold ones through a forking straw. In this case, the beer has been replaced by bottles of milk to help quench your burning piehole. But if you do take a sip, observers will know because a flow sensor measures how much you suck down. There’s also a humidity sensor which monitors the sweat building up on your forehead. The Arduino that runs it all tracks this info and uses it to set the discomfort meter on top of the helmet, all while the audience gets a closeup from the camera projecting beyond the helmet’s brim.

We’re happy to say they won 1st place for the creation. Check out their 90-second presentation after the break.

Continue reading “Nuclear Taco Helmet Measures Reaction To Spicy Food”

A DIY Audio Player For When All That Matters Is The Music

orange-mepod

[Grissini] hasn’t had the best of luck when it comes to personal audio players. He estimates that he’s gone through about half a dozen iProducts/iKnockoffs over the years, which ultimately adds up to a lot of money poured right down the drain. Rather than lay down his cold hard cash for yet another music player that would succumb to a dead battery or cracked screen, [Grissini] decided that he would be better off if he built one himself.

His Orange mePod isn’t exactly the most attractive or sleekest music player out there, but [Grissini] says it works like a charm. An Arduino Uno powers the device, and he uses an Adafruit Wave Shield to handle the audio playback. Power is supplied via 4AA batteries which keep the tunes going for a reasonable amount of time, and afford him the ability to swap them out for recharging without much fuss.

The player was encased with some leftover cardboard and wrapped in bright orange duct tape, before being mounted on [Grissini’s] belt. He says he gets plenty of looks when he’s out and about, which you would expect from such a unique design.

Stick around to see a quick video of the audio player in action.

Continue reading “A DIY Audio Player For When All That Matters Is The Music”

Adding Keypad Security To Your Automobile’s Ignition System

[BadWolf] managed to make some free time to get back to his own electronic projects. This time around he’s created a security system for his car. It’s patched into the ignition, preventing the engine from starting when the key is turned. A driver must first insert the key, then type the combination on a keypad in the center console before the car will fire up.

While he was working on the project he also decided to add a start button to the dash-board (we think it does make it look like a later model vehicle). The keypad is driven by an Arduino Nano which has the start code stored in it. Power for the system is provided by a USB hub hidden behind the dash which he thinks will also come in handy with future hacks.

When the proper code is entered, you’ll hear a rendition of the Super Mario Bros. theme. The speaker also lends a pleasant beep with each keypress. See the demo clip after the break to hear it for yourself.

Continue reading “Adding Keypad Security To Your Automobile’s Ignition System”

Simple Telepresence Hack Lets Remote User Rotate This Laptop

[Kris] wanted to make the telecommuting employees at his office feel a little more in control of their virtual presence in the office. He gave them a way to look around without needing to go into full-blown robotics. This laptop stand has a Lazy Susan connected to a servo motor to give the user control of where the computer is pointed.

We’ve certainly seen our share of really complicated surrogate builds like this balancing robot. There have been simpler options too, such as this smartphone-carrying motorized base. But when you get right down to it, the ability to pan the camera is probably good enough for most situations. [Kris’] solution can be built in an afternoon, using simple materials. The box is made out of MDF with a base for the laptop connected by the ball-bearing hardware that supports the weight and makes sure the servo is able spin it freely. It is driven by an Arduino which connects to the computer via USB; making it easy to control remotely. Check out a quick clip of the laptop going round and round after the break.

Continue reading “Simple Telepresence Hack Lets Remote User Rotate This Laptop”

This Animatronic Horus Guard Mask Is So Good, Even Anubis Would Be Fooled

horus-guard-mask

[Jerome Kelty] is a big fan of the movie Stargate, and when he saw it for the first time, he wanted one of the awesome helmets worn by the Horus Guards. This isn’t the kind of thing you would normally find at your local costume shop, so he knew that he would have to build one of his own. After rejecting multiple designs over the years, he finally came up with a solution that he thought would work well.

His Horus Guard helmet was constructed primarily out of cardstock, papier-mâché, spray foam, and spackle. Don’t let that list of materials give you the wrong idea about this helmet however – it looks absolutely amazing!

Not only does it look good, but it moves just like the guard’s helmets in the movie too. To control the helmet’s movements [Jerome] used an Arduino animatronics setup he designed, which we’ve seen before in his slick Predator build from last year. The Arduino controls a set of 5 servos, which are tasked with turning the helmet’s head and actuating the fans mounted on either side.

Stick around to see a short video of the mask in action, and if you’re thinking of building one yourself, be sure to check out his writeup for a very thorough BoM.

Continue reading “This Animatronic Horus Guard Mask Is So Good, Even Anubis Would Be Fooled”

Brute Force BIOS Hacking Using The Arduino

This clever hack uses an Arduino to do a brute force attack on a computer’s BIOS. In theory, this technique could be used for other programs, but it’s use would be limited since there’s no way to account for too many wrong passwords.

The Arduino generates and outputs the possible password emulating a USB keyboard. When this is done, the pixel in the middle of the screen is read. This is done by reading the analog red signal synced up with the corresponding horizontal and vertical pulses. As with any hack, there were some programming issues that had to be overcome (including one that locked up the keyboard emulator), but this was resolved, and the code is available if you wan to build your own.

Hardware for this build is simple, involving a LCD output, a button to stop everything, and a couple diodes to get the USB keyboard working correctly. This hack turned out quite nicely, and the code and schematics are included!