Camping Light Retrofitted As A Solar Recharging Station

With grand plans of tenting out for several days at a music festival [Josh] needed a way recharge his portable devices. In the past he’s lugged around a 12V battery with him, but this year he wanted to make things easier. He ended retrofitting a camping light to do the job with the help of the summer sun.

The first step of the project was to source some rechargeable batteries. He toyed with the idea of Li-Ion cells but ended up going with NiMH because the charging is more forgiving and he got them at a great price. Because of the lower operating voltage (1.2V versus Alkaline’s 1.5V) he needed to squeeze two more into the lamp housing. Here you can see that he just managed to get them to fit in the wire-run area down the middle of the case.

Next comes the recharging circuit. He based his design around an ATmega44, using a voltage divider and the ADC to detect when the batteries are topped off. During the day this is connected to an external solar panel and it’s ready to charge his phone when he gets back at night.

The Folly Of Adding An Auxiliary Audio Input To A Hyundai Sonata

Why auxiliary audio inputs haven’t been standard on automotive head units for decades is beyond us. But you can bet that if you’re looking at a low-priced sedan you’ll need to buy an entire upgrade package just to get an audio jack on the dash. [Jon W’s] Hyundai Sonata didn’t have that bells-and-whistles upgrade so he decided to pop his stereo out and add his own aux port.

A big portion of this hack is just getting the head unit out of the dash. This is made difficult on purpose as an anti-theft feature, but [Jon’s] judicious use of a butter knife seemed to do the trick. He lost some small bits along the way which were recovered with a Shish Kebab skewer with double-stick tape on the end.

With the head unit out, he opened the case and plied his professional Electrical Engineering skills to adding the input. Well, he meant to, but it turns out there’s no magic bullet here. The setup inside the unit offered no easy way to solder up an input that would work. Having done all of the disassembly he wasn’t going to let it go to waste. [Jon] grabbed a nice FM transmitter setup. He wired it up inside the dash and mounted the interface parts in the glove box as seen here.

It’s nice to know we’re not the only ones who sometimes fail at achieving our seemingly simple hacking goals. At least [Jon] was able to rally and end up with the functionality he was looking for.

Look, It’s A Helicopter! It’s A Plane! It’s A Rolling Robot!

The helicopter-plane-ball-bot sounds like a creation [Homer Simpson] would come up with, but it’s a fairly accurate description of what this machine can do. It was developed by researches at Japan’s ministry of defense. The single propeller lets it operate much like a helicopter. But when it needs to get somewhere quick, the body repositions itself with the propeller at the front, while those black panels function as wings. Finally, the spherical body lets it travel along surfaces, vertical or horizontal. It can even roll along the ground.

After the break you can see a flight demo video from the 2011 Digital Contents Expo. It makes us wonder about the control interface. Which part of this is the front side, and how does it know which direction the operator intends to steer it? Perhaps there is feedback on the cardinal orientation of the control unit? We don’t have the answers to these queries, but we think there’s something very Sci-Fi about it. It brings to mind the Dog Pod aerostatic defensive grid from Neal Stephenson’s novel The Diamond Age.

Continue reading “Look, It’s A Helicopter! It’s A Plane! It’s A Rolling Robot!”

DIY Binary Alarm Clock Small Enough To Fit In Your Pocket

portable-binary-clock

[linux-dude] always wanted to have a binary clock, but he didn’t want to pay someone else to make it for him. Additionally, he was looking for a compact alarm clock he could take on the road, rather than relying on the one in his hotel room.

Inspired by other binary clock projects he has seen over the years, he set off to build his own, which he wanted to fit inside an Altoids tin. His binary clock uses an Arduino Duemilanove (which fits perfectly in the tin) to keep time and control the indicator LEDs. The LEDs are arranged in two rows as you would expect, representing hours and minutes. A small piezo speaker serves as the alarm buzzer, which should be sufficient to wake up most people, though something bigger might be required for heavy sleepers.

We didn’t see any sort of battery pack or power plug mentioned, so we’re not quite sure how [linux-dude] keeps his clock juiced up. Additionally, the lack of an real time clock is something we’re puzzled by. While the Arduino does have a clock function that can be used, an RTC might serve him better – then again if he’s gone for just a day or two at a time, a small amount of drift may not be an issue.

beer-security

Beer Security System Keeps Freeloaders Out Of Your Stash

The crew at the Milwaukee Hackerspace are pretty serious about their beer. They used to have a fridge filled with cans, available to all at the hackerspace, but they decided to beef things up and create a secured beer dispensing system.

Like many others we have seen, their kegerator is built into an old refrigerator, complete with a tap built into the door. To ensure that interlopers are kept from their precious brew, they have secured the refrigerator using an Arduino and RFID tags to grant access. They use the same RFID key fobs members carry to gain access to the space for tracking beer consumption, unlocking the tap whenever a valid tag is swiped past the sensor.

They are still in the midst of tweaking and revising the system, but it looks good so far. It’s a great way to keep uninvited guests from their beer stash, while giving them a way to track consumption at the same time. We’re looking forward to seeing more details and code once things are completely wrapped up.

[via BuildLounge]

Second Run At Taser Gloves Uses Bug Zapper Parts

[Jair2k4] ditched the Altoids tins and found a new voltage source for this latest rendition of his taser gloves. Regular readers will remember his first iteration which used wrist-mounted enclosures containing the flash circuitry from disposable cameras to shock the wits out of someone with the laying on of hands. This one is a complete rework but it follows the same concepts.

The new shock circuitry is from a bug zapper in the shape of a fly swatter. We’ve seen these handheld devices before and dismissed them as a gimmick, but [Jair2k4] got his hands on a couple of them and found out they can put out a spark of up to 2300 volts. He set to work by getting rid of the tennis-racket-style grid at the top of the handle. He soldered on some contacts which reach to the tip of his middle-finger and thumb on some rubberized work gloves. The original handle was kept as it’s a nice battery holder and works well strapped to his forearm.

Does it work? You bet – even singing his arm hair and leaving welts on his skin. See for yourself after the break. And yes, this goes on the list of hacks you should recreate!

Continue reading “Second Run At Taser Gloves Uses Bug Zapper Parts”

Using WebSocket With PIC Microcontrollers

[Blaise Jarrett] has been grinding away to get the WebSocket protocol to play nicely with PIC microcontrollers. Here he’s using the PIC 18F4620 along with a Roving Networks RN-XV WiFi module to get the device on the network. He had started with a smaller processor but ran into some RAM restrictions so keep that in mind when choosing your hardware.

This project was spawned after seeing the mBed feature a few days back which combined that board along with a WebSocket library and HTML5 to pull off some pretty amazing stuff. [Blaise] doesn’t have quite as much polish on the web client yet, but he has recreated the data transfer method and improved on that project by moving to the newer version 13 of WebSockets. The protocol is kind of a moving target as it is still in the process of standardization.

The backend is a server called AutoBahn which is written in python. It comes along with client-side web server examples which gave him a chance to get up and running quickly. From there he got down to work with the WebSocket communications. They’re a set of strings that look very much like HTML headers. He outlines each command and some of the hangups one might run into with implementation. After reading what it takes to get this going it seems less complicated than we thought, but it’s obvious why you’ll need a healthy chunk of RAM to pull it off.