Trackuino – An Open Source Arduino APRS Tracker

trackuino board

Trackuino is a new open source (GPLv2 license) Arduino APRS tracker designed by [Javier Martin]. If you are unfamiliar: APRS (Automatic Packet Reporting System) is an amateur radio method used to relay small packets of position-tracking data to an online database for easy access and mapping. In this case, GPS telemetry data is used to track latitude, longitude, altitude, course, speed, and time measurements in near real-time via aprs.fi.

Although this reminds us of the WhereAVR that we covered previously, the Trackuino includes an onboard radio so no external handheld unit is necessary. Since the Trackuino was designed primarily for high-altitude balloon tracking, a number of useful related features are also included: dual temperature sensors, support for a humidity sensor, and a remote “cut-down” trigger really make this a complete package.

Initially there was some concern that the 300mW radio used would not be powerful enough to reach the ground-based receivers from peak altitudes. This was clearly not an issue however, as the signal was heard from nearly 600Km away during the maiden voyage. If this still doesn’t sound like enough power, a 500mW radio is also supported.

Make sure to check out [Javier]’s blog for some amazing high-altitude photos and everything needed to get your own Trackuino up and running in no time!

Thanks [Brad]!

Laser Tracker Replays Competitive Rock Wall Climbs

laser_climbing_tracker

Instructables user [PenfoldPlant] is a big fan of indoor rock climbing, and while watching others make difficult climbs, he has often wondered if he could follow the same route up the wall. Unfortunately, aside from watching the other climbers and hoping to remember the path they have taken, he found there isn’t much you can do to ensure that you have precisely replicated the climb.

He thought awhile and came up with a laser tracking system that can be used to record a climber’s ascent, then replay it any number of times. This allows climbers to be able to replicate other climbers’ paths as well as compete against one another in timed races.

This works much like the “ghost” feature found in most racing games, though the process is half manual/half automated. The initial ascent is recorded by manually tracing the climber’s route with a laser pointer as they climb. The path is recorded and then can be replayed, courtesy of the onboard Arduino.

It really is a neat system, and while it works pretty well already, we think there is still room for enhancement. It wouldn’t be extremely difficult to have the climber wear some sort of light beacon that could be tracked using a web cam or other recording device, taking the manual labor out of the equation. In that case however, we imagine the Arduino would need to be swapped out for something a touch more powerful.

Stick around for a quick video of the tracking system in action.

Continue reading “Laser Tracker Replays Competitive Rock Wall Climbs”

Guitar Teaches You To Play Using LEDs

guitarduino

[Andrew] is an electrical engineering student at UIC, and decided that he would build a MIDI guitar for his senior design project. After tinkering for awhile, things were not looking good, and the MIDI guitar idea was scrapped. With his deadline creeping up, he came up with a new idea, the Guitarduino. His new project is a guitar that teaches you how to play chords and scales by showing you the proper notes to play via LEDs embedded in the guitar’s neck.

He removed the neck, and carefully drilled the holes that would eventually house his 130+ LEDs. The LEDs were wired to his Arduino via some multiplexing circuitry that resides on the back of the guitar’s body. The Arduino was mounted on the front of the guitar along with a shield used for communicating with his LED array. He built another shield that serves as the LCD display as well as the input board for his guitar.

The final result of all his work is fantastic. The user simply needs to dial in the chord or scale that he wants to learn, and the guitar lights up, showing the proper finger positions on the fretboard. We could see this coming in quite handy for anyone just starting to learn how to play.

Check out the video below to see a demonstration and walkthrough [Andrew] put together highlighting his guitar’s features.

Continue reading “Guitar Teaches You To Play Using LEDs”

Open Hacker Conference Badge Project Needs Your Help!

[Aestetix] writes in to tell us that the OpenAMD (Attendee Meta-Data) project is working on a new revision of their hardware, to be debuted at CCC Camp this fall.

For the uninitiated, OpenAMD combines an Active RFID tracking system with social networking, and is completely open-source. You walk into the conference, put on the OpenAMD badge, and suddenly you can see yourself as a dot moving around on a map. Or you can log into the social networking site, create a profile, and watch as your personal information is pulled into the mesh, which then tells you talks you might like, people you might like, where those people are, and more. There’s even an open API where you can create your own ‘killer’ apps, which may include games or other interesting aggregates of the attendee information.

Continue reading “Open Hacker Conference Badge Project Needs Your Help!”

Radiation Sensor Shield For The Arduino

The [Libelium] team wanted to help people in Japan measure radiation in their surroundings following the nuclear accident in Fukushima. Because of the affordability and seeming ubiquity of the Arduino platform, they have been hard at work this last month trying to get their Geiger counter sensor board for an Arduino out the door. We think they’ve done a remarkable job.

A Geiger tube is a remarkably simple device, but getting the part can be a fairly expensive proposition. Thankfully, [Libelium] has already tested and verified a number of tubes from different manufacturers – very helpful if you don’t want to be tied down to one specific component.

This looks like this is just the sort of thing that the folks at [Seed Studio] wanted for an open hardware radiation detector, and [Libelium] has already shipped their first batch to the Tokyo Hackerspace. It’s good to know that help is going where it’s needed.

Video of the sensor board being tested after the break.

Continue reading “Radiation Sensor Shield For The Arduino”

Chatbox Wireless IM Client

[Utpal Solanki] wanted to do some text chatting from the comfort of the couch. He built this wireless chat client that he calls Chatbox using a microcontroller, a character LCD screen, and a keypad that he built himself.

The device communicates via an Infrared emitter and receiver. It pairs up with an Arduino using an IR shield that [Utpal] built. The handheld unit flashes a pair of white LEDs whenever it receives a message from the Arduino. You can then hit the Inbox button and scroll through to read what was received. To reply  just type on the keypad the same way you would with a cellphone, then hit the send button to shoot that message back to the Arduino.

On the computer side of things the messages are being relayed to and from the Arduino over a USB connection. Early on in the video demonstration (embedded after the break) [Utpal] shows his Chat Box program communicating via the handheld unit in the same way that other messenger programs work.

Looks to us like he’s built his own non-pink version of what the IM-ME was originally intended to do.

Continue reading “Chatbox Wireless IM Client”

DTMF Shield Aimed At Ham Controlled Arduino

[Colin] wanted a way to reliably control an Arduino via ham radio. One of the easiest methods of automated radio control makes use of Dual-Tone Multi-Frequency signalling. To those who aren’t into amatuer radio you probably recognized DTMF as the touch-tone system for telephone communications. [Colin] built a shield that has an audio input and can decode DTMF signals.

The hardware is based around an MT8870 DTMF decoder chip. This is a popular choice for DTMF hardware because it does all of the decoding work for you. Whenever a valid tone is detected it outputs the associated value in binary on four output pins. There is a fifth pin that strobes after each new tone. [Colin’s] design offers a lot of feedback for what’s going on with the input signal. The DTMF value is displayed on a 7-segment display (controlled completely in hardware), the value is output on for Binary Coded Decimal pins, and mapped to a set of ten pins which pull to ground to match the digit received.