Build Your Own Portal Turret In 150 Easy Steps

If there were a contest for the most thorough step-by-step project log [Kurt] would the champion. He recently a posted 150 step build log for his fleece-covered Portal turret project. If you can get over the need to click-through 30 pages of steps, there’s a lot to like about this project.

First, what it doesn’t do: The Turret doesn’t split up the middle and fire bullets at you. This is a relief, but the fact that it’s not lethal doesn’t mean it just sits there looking interesting. It can detect movement, it knows when you pick it up, and it can tell when it’s been knocked over. All of these interactive sensory inputs are used to playback various sound bytes from the Portal games, making it a great piece of desk art for those working in geek-centric offices. See for yourself in the video after the break.

The body itself is a food storage container which houses the barebones Arduino and Adafruit Wav shield. As near as we can tell, a PIR sensor detects movement, and leaf switches on the legs tell it when it’s been picked up or tipped over. But we only made a cursor examination of the assembly steps so we might be missing something.

If you’re not into the turrets, maybe this potato is more up your alley.

Continue reading “Build Your Own Portal Turret In 150 Easy Steps”

Hone Your Skills By Building Control Modules

If you ask us, there’s no substitute for learning by doing. But often the hardest part of acquiring new skills is coming up with the idea for a project that utilizes them. [Mike Rankin] wanted to develop a project using laser cut acrylic, and settled on building a control box for an RGB LED strip. He got some practice modeling objects in SolidWorks and seeing the process through to the final build. But it also let him explore an area of microcontroller programming in which he had little experience.

The LED strip he’s using depends on the HL1606. This is an SPI addressable chip that we see popping up in a lot of projects these days. It’s pretty simple to send red, green, and blue values through the data bus, and it allowed [Mike] to try his hand at programming menus and sub-menus. The controller takes input from a clickable rotary encoder. The settings are displayed on an OLED screen, with all the hardware nestled comfortably in his custom-cut enclosure.

Don’t miss the demo video embedded after the break.

Continue reading “Hone Your Skills By Building Control Modules”

Freakyphone Has A Puzzle For You!

freakyphone

[Mime] likes to make puzzles and games for his friends to play, often using recycled electronics to construct them. He had been contemplating a sound-based game for some time when he came across an old rotary phone at a garage sale that would be perfect for what he had in mind.

He calls his creation the Freakyphone, and the goal of the game is to guess the name of a historical figure via a series of audible clues. The phone was constructed using an Arduino that plays audio using a sound shield from Adafruit. While he was ultimately unable to get the phone’s ringer to work properly, [Mime] says that the build process was relatively easy overall.

When activated, the phone buzzes for attention, prompting the player to pick up the handset. After introducing the game, the phone will ring additional times with random sound clips to clue the player into the historical figure’s name. If the player correctly enters the person’s name using the rotary dial, they receive a “winning tone” and the game is over.

It’s always nice to see someone building gadgets for their friends just for the sake of fun – nice work!

Continue reading to see a video showing how the Freakyphone was built along with a demo of the game.

Continue reading “Freakyphone Has A Puzzle For You!”

Getting The Lead Out Of The Arduino Runtime

mhvlib_arduino_efficiency_runtime

Ah, the Arduino.

Love it or hate it, there’s no denying that part of its accessibility comes at the expense of speed and efficiency. We honestly like the platform as well as all of the others out there, because we believe that everything has its proper place and purpose. The crew over at Make, Hack, Void think that the Arduino dev boards are well and good, but that the core of the Arduino runtime could use some improvement.

They have taken it upon themselves to dig deep into the code and make some of the improvements that many advanced Arduino users have been clamoring for. Their MHVLib is an efficiency oriented runtime library which works on all AVR microcontrollers, whether they be standalone uCs or Arduino-branded hardware.

They have changed the way that the Arduino handles pin and port information, as well as how object and buffers are allocated in memory. Their code still relies on an Arduino-style bootloader, though they recommend Optiboot since it’s about a quarter of the size of the Arduino version.

There’s a complete list of what has been implemented available on their site, and you can grab the code via their GIT repository if you want to give it a try yourself.

A Sunrise Clock For Those Cold, Dark Winter Mornings

sunrise_alarm_clock

For most of the working world, the onset of autumn and winter in the Northern hemisphere means one thing – waking up well before the sun rises to get a start on the daily grind. [Brent] from Freeside Atlanta knows that routine well and decided to build himself a sunrise alarm clock in an attempt to wake himself more naturally on those dark mornings.

He bought an assortment of LEDs in varying colors including blue, red, yellow, and white, along with a few UV diodes for good measure. His goal with this array of LEDs was to simulate the natural colors of the sunrise, rather than simply slowly brightening the room. The clock uses a DS1307 RTC to keep the time, and an Arduino is tasked with lighting the LEDs about 25 minutes before it’s time for [Brent] to wake up.

He says that it seems to be working pretty well, gently waking his body before the clock radio kicks in. It certainly beats a loud buzzer!

Recreating The First PC

If you’re looking for a simple Ardunio project, why not replicate the first personal computer?

After discovering the Arduino, [Mark] realized recreating really old computers would be a fun project. An Altair 8800 was on the table, but the sheer number of blinkenlights, switches and the Intel 8080 CPU made that a fairly difficult project. After a bit of searching, [Mark] discovered the Kenbak-1, widely regarded as the first personal computer. The Kenbak also had the added bonus of having a very minimal I/O compliment and was built entirely with TTL components.

Since the Kenbak-1 is an extremely simple computer, [Mark]’s build ended up being fairly minimal. The schematic is only an ATmega328, a few shift registers and a real-time clock for a few added features the OG computer didn’t have. The completed build is programmed by pushing buttons to enter machine code into the mega’s RAM and then executed. [Mark] has a few programs already figured out – a program that counts in binary, a ‘Cylon eye’ and a BCD and binary clock. While the Kenbak-uno doesn’t have the awesome vintage case of the original, it’s still a remarkable build.

Check out the videos after the break for a walk through.

Continue reading “Recreating The First PC”

Prototyping A Bluetooth To IR Remote Control Translator

[James] is one of those guys on a quest to control everything with one device. His tool of choice is an Android phone, which can do quite a lot right out of the box. But he was never satisfied with its lack of IR remote control abilities. He fixed that feature-gap by building a Bluetooth to Infrared translator.

The hardware he used for the prototype is quite simple. A cheap serial Bluetooth modem from eBay lets him connect to his phone. An Arduino board listens for data from the modem and converts incoming commands to flashes on an IR LED. Voila, he can control the tube with his phone.

We love the potential of this hack. The Bluetooth module runs from 3.3V, and reading serial data and flashing an LED is extremely simple. You should be able to use a small uC, say an ATtiny13, and a 3.3V regulator to miniaturize the module. We could see this plugging into the USB port on the back of a TV for power, with a wire extension to put the LED into position. The only shortfall is the inability to turn the TV on remotely when drawing power this way.

Remote codes aren’t particularly large to store either. So this would be pretty easy to extend to full control of all IR-compatible home entertainment devices. You just need a tool to discover the remote control codes.

Continue reading “Prototyping A Bluetooth To IR Remote Control Translator”