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!

Audio Output Selection Courtesy Of The Internet

[Peter] was tired of crawling behind his desktop computer to switch between headphones and speakers. We feel his pain, as the headphone port on our computer speakers has its own demonic hum rendering the jack useless to us. His solution was to build this output selector board, then control it via the network.

A relay is responsible for routing the single input to one of two outputs. One output is wired to the normally closed pin on the relay, the other to the normally open pin. The important thing here is to make sure you have a separate audio ground so as not to pick up noise from the rest of the hardware.

What you see above is only the switching circuitry. This is where [Peter] went a little overboard, using an Arduino along with an Ethernet shield to drive the relay via a transistor. For this particular application there must be an easier way. But if you’re working on home automation from your smart phone, this might be just the thing to make your audio setup browser-controlled.

[via Build Lounge]

The Origin Of The Arduino

If you ever wondered how the Arduino came into being, check out [IEEE Spectrum’s] article entitled “The Making of Arduino.” From it’s humble origins in Northern Italy, the Arduino, as shown by a large number of projects featured at [HAD], has become the go-to processor for DIY processing power. It’s cost (around $30) and ease-of-use are some of the biggest factors allowing it to become such a huge success.

One thing that interests many people about the Arduino is that it is totally open source, licensed under the Creative Commons License.  This was quite innovative in itself since the CCL was generally applied to works of art like music and writing.  Despite the fact that [Banzi] and his team decided to literally give the design away, 0ver 250,000 of these boards have been sold worldwide not including their many clones.

If you’re wondering how it got the name “Arduino”, it’s named after a bar named “Bar Di Re Arduino” in the Northern Italian town of Ivrea.

ColorNode: A Drop-in GE Color Effects LED Controller

colornode-ge-color-effects-controller

[Paul] was looking to spice up his holiday decorations this year, so he picked up some GE Color Effects lights and started hacking away.

We’ve already seen how hacker-friendly these LED bulbs are, which is why [Paul] decided to give them a try. His ultimate goal was to synchronize several sets of lights from one location, which would unfortunately require that he run wires from his control board to each of the strings.

He then decided to go a different route, and build his own control board that would work as a drop-in replacement for GE’s controller circuitry. He wanted to retain the wireless control aspect of the lights, so he picked up some RFM12B wireless modules which happen to be well-supported by the folks at JeeLabs.

He modified their JeeNode board design to fit it in the Color Effects electronics enclosure, paring it back to the minimum components necessary to control his lights.

The hardware side of the ColorNode is complete, but the software is a work in progress. [Paul] says that once he gets things wrapped up, he will make the code available on his site.

Beginner Concepts: We’re Gonna Let You Finish, But First This Tutorial On Arduino Interrupts

OK, year-old pop culture references aside [Kyle] dropped us a line to show us his tutorial on using interrupts with your Arduino. Given the single core nature of your average Arduino’s AVR you pretty much have two choices for monitoring occasional un-timed inputs: Either check an input at an interval (which risks missing the signal entirely) or set up an interrupt to pause the chip’s normal operation. Obviously working with interrupts saves you tons of clock cycles since you are not polling a pin over and over. [Kyle] plans on a follow up tutorial to cover timer based interrupts, which can come in handy when generating frequencies and stuff.

Looking for more Arduino Basics? How about Basic on an Arduino. Check out our other beginner concepts posts as well if you need to work on your fundamentals.

Arduino-based MIDI Synth

[Charles Gershom] has been tinkering around with his keyboard and Arduino in order to build his own version of a MIDI controlled synthesizer. It looks like he’s gutted the enclosure of some commercially available MIDI hardware to use for the project. This works nicely since it gives him both the MIDI and audio jacks that he needs. The box also provides a nice control surface where a set of four LEDs indicates the synth mode currently in use. There are also four potentiometers mounted on the panel, but they’re not yet up and running.

Check out the video after the break to see what this can do so far. [Charles] shows the device synthesizing sounds coming in from the keyboard. It is also used to playback the audio from Super Mario Bros. which is fed in by a music notation program on a computer. Only one voice is playing when this happens which makes us think this can only handle one channel at a time right now (but we could be wrong).

Continue reading “Arduino-based MIDI Synth”