Fancy telemetry control display for a quadcopter

Most of the quadcopter projects that we’ve seen use a joystick-based control system. This lets you fly the thing around like any RC vehicle. But [Saulius] is augmenting his control system by pulling and displaying telemetry data. It doesn’t really change the way the vehicle is controller, but it lets the craft roam much further away because the operator can watch the computer screen and forego the need for the quadcopter to be within sight.

A Carambola board (also used in this weather station project) is used to provide connectivity. This is WiFi based, which helps us understand the range it can travel. The quadcopter carries a camera, which is shown in the lower right box of the image above. There is also an artificial horizon, and feedback dials which display the telemetry data.

It looks like there’s a satellite view in between those two dashboard widgets. We don’t see anything coming up right now, but it’s possible this is meant to overlay a virtual marker for the aircraft’s position based on GPS data. That last part is really just conjecture though. Catch the 80-second test flight after the jump.

[Read more…]

Old radio + old phone = Android media station

[Bjørn] combined some aging electronics he had around the house to create this Android media center. The enclosure is an FM-radio, but since he only listens to online media it wasn’t of much use to him. After sizing it up he realized it was a perfect candidate to receive his old HTC Hero Android phone.

The upper portion of the stock radio used to host controls for tuning the FM dial, adjusting volume, and switching the unit on and off. He cracked open the case, ditching the radio receiver and patching in to the amplifier. The volume knob was moved to the right side of the case, and a hole cut to receive the phone. Audio is pulled from the phone with the jack sticking out the left side. We’d love to see a future improvement using a right-angle jack (kind of like this charging hack) or patched directly into the phone’s circuit board. This way everything would fit inside the box.

Now he can listen to Internet radio, or stream some video like in the clip after the break.

[Read more…]

Data broacasting "Transparency Grenade" ads whimsy to your meetings

If you’re tired of underhanded deals going down behind closed doors maybe you need to start carrying around this transparency grenade. The enclosure is modeled after a Soviet-era F1 Hand Grenade. But it’s not filled with explosives and won’t send deadly shrapnel around the room. Instead, when the pin is pulled it starts recording audio and sniffing network packets, then broadcasts both to a remote server. Perhaps you could consider this to be data shrapnel sent around the world.

The exploded parts image above shows what hardware is at use. There’s a Gumstix board at the heart of the device which uses a WiFi module for sniffing and broadcasting data. The LED bar graph which you see in the fully assembled unit shows the wireless signal strength.

It sounds like the enclosure itself was 3D printed from Tusk2700T translucent resin but we’re a little confused by this part of the hardware description. We don’t have much of a need to transmit recordings of our meetings, but we’d love to use this case design for that MP3 enclosure.

[via Reddit]

WiFi experiments with ATtiny microcontrollers

[Quinn Dunki] got some free stuff from Element14 to evaluate, including this Mircrochip WiFi module. It’s been used as the centerpiece of an Arduino shield in the past, and she grabbed a copy of that library to see if it would play nicely with an ATtiny chip. What follows is a struggle to de-Arduino the code so that it’s portable for all AVR controllers.

This module is one of the least expensive ways to add WiFi to a project, coming in at around $23. But it’s not really an all-in-one solution as there’s still a huge software hurdle to cross. The hardware provides access to to radio functions needed to communicate with the network, but you need to supply the TCP/IP stack and everything that supports it. Hence the re-use of the Arduino library.

Battling adversity [Quinn] fought the good fight with this one. Switching from an ATtiny to the ATmega168, compiling more code, and troubleshooting the process. She used a single LED as feedback, and can get some connectivity with her hotspot. But to this point she hasn’t gotten everything up and running.

We’re hot for an AVR WiFi solution that is cheap and easy to use. But as we see here, the software is complex and perhaps best left up to beefier hardware like the ARM controllers. What do you think?