Making A Bluetooth Headset Into A Wireless Music Streaming Device

This bluetooth headset hack, although simple, may provide some hacking inspiration. Turning a Bluetooth headset into a wireless input for one’s stereo is definitely something that makes one think “why didn’t I think of that?” It’s also good if you’ve got a tight hacking budget as there’s not a lot of stuff to buy.

In addition to a possibly broken headset, a 3.5mm stereo plug and some wires are needed for this. Throw in some tools that every good hacker should have around like a soldering iron and glue gun and you’re ready to get started. [Dex] does a good job of describing the process, from disassembling the headset to wiring the stereo plug to it. When making the conversion, one must remember to bridge the left and right output channels, as most headsets only output a mono signal.

There’s not a whole lot else required to do this hack.  Could be a good beginner project. For another Bluetooth-based hack using scrounged equipment, check out this Cellphone controlled retro-radio hack.

Wireless Fiber Optic Mood Lighting

ceiling_mounted_starfield

There’s something calming about looking up into the night sky and seeing an array of shining stars off in the distance. [Marou] is a big fan of stargazing, but sometimes conditions are not optimal, so he decided to bring the stars inside.

His idea was to build a ceiling lamp that didn’t bask the room with light, but rather one that reproduced the peaceful twinkle of the night sky. He covered a wooden table with dark fabric and drilled a ton of tiny holes into the surface. He fitted the holes in the table with two big bundles of optical fibers since one bundle couldn’t quite cover the entire thing.

To light the cables, he built a pair of 4-LED illuminators, which contain red, blue, green, and white LEDs. Each light source is controlled via an Arduino which takes its direction from [Marou’s] infrared remote.

While the idea isn’t new, the implementation is pretty cool. At first we were expecting a small lamp, but anchoring an entire table to the ceiling as a light panel is definitely something we hadn’t seen before.

If you want to build something similar in your own living room, [Marou’s] Arduino code is free for the taking.

Controlling Dioder Light Strips Wirelessly

dioder_universal_io

[SeBsZ] does a lot of work in home automation, using Xbee modules, LEDs, and other home lighting systems. Naturally, people look to him for help with different electronics projects, but one thing he has been asked time and time again is if he can make a simple mood lighting solution that can be easily installed.

He has always been interested in playing around with RGB LEDs, but he wasn’t looking to reinvent the wheel with this project. Instead he based his work off the Ikea Dioder product, an off-the-shelf set of adjustable LED strips. As we’ve seen before, the control module for these LEDs leaves a bit to be desired, so he removed the Dioder’s onboard PIC and wired up a controller of his own. His “Universal IO Board” uses an Atmega88 for control and has all the pins required to attach an Xbee wireless module. With everything wired up, he now has full wireless control of the Dioder light strips, without a ton of fuss.

Although he’s selling a few different hardware kits, the schematics for his IO board are freely available on his site, should you want to make your own. The only thing that we didn’t see was the code for the Atmega, but we’re guessing he has that posted somewhere as well.

Adding Wireless Controls To Vintage Stereo Equipment

marantz_wifi_remote_control

[Jean] was shopping around for a vintage stereo receiver, and happened upon a broken, but repairable Marantz 4240. After getting things back to working order, he thought it would be great if he could use his iPhone to remotely control the unit (PDF Writeup, Schematics and Code).

He scrounged around for parts, and after locating a PIC and a handful of parts from old copiers and printers, he got down to business. He etched some custom boards to house electronic bits, then strapped motors to the volume and source selection knobs. He also rigged up the push button power switch on the receiver, using a small servo and a bit of string.

Now, he can control everything using his iPhone, which communicates with the stereo over WiFi. While the power, volume knob, and input selector can be triggered remotely, he still has the ability to tweak any of these items manually if desired.

We think that this is a great way to add modern amenities to vintage electronics, without ruining the aesthetics of the components. Don’t take our word for it though, check out the video demonstrations [Jean] but together after the jump.

Continue reading “Adding Wireless Controls To Vintage Stereo Equipment”

Robots Tends Your Lawn While You Veg Out On The Couch

nuntius_the_garden_avenger

Most people can agree that picking weeds is not a whole lot of fun. [Dave] was not a big fan of sitting out in the heat toiling over his lawn, so he did the only rational thing and built a robot to do it for him.

Nuntius, the Garden Avenger, is a remote controlled robot that [Dave] can use to pick weeds from the comfort of his couch. The robot is controlled by a Propeller microcontroller, taking its commands wirelessly via a pair of XBee modules. Nuntius’ controller is pretty intuitive, consisting of a 5-axis arm complete with a gripper that [Dave] can articulate in any number of directions. His motions cause the robot’s arm to move in sync, and driving Nuntius is as easy as holding down a button and moving the controls in the desired direction.

[Dave] can monitor what Nuntius is doing via a wireless camera he has installed on the robot’s arm, allowing him to sit back and relax indoors while the robot handles the hard work.

Keep reading to see a short video demo of Nuntius in action.

[via Make]

Continue reading “Robots Tends Your Lawn While You Veg Out On The Couch”

Retro-radio: Building On Another WiFi Radio Hack

[Jay Collett] likes listening to Internet radio stations and decided to build his own standalone hardware that lets him listen without being at his computer. But he wasn’t starting from square one on this project. [Jay] built on the epic instruction set that [Mighty Ohm] published when he first built his own WiFi radio.

Both of these radios used the same method of getting onto the internet; a hacked router. We kind of like this because it means you should be able to use the radio as a bridge for wired Ethernet devices. But we digress. [Jay] departs from the instructions by using an Arduino and its IDE to interface an LCD screen with a different line/column orientation than the original, and to implement a different control scheme. This makes the project a bit more approachable if you prefer not to roll your own electronics.

Take a look at the video after the break. The router takes quite a while to boot, but once it does it seems that the controls are both intuitive and responsive.

Continue reading “Retro-radio: Building On Another WiFi Radio Hack”

Google Android ADK Bluetooth Wireless Communications

arduino_to_android_ADK_bluetooth_communications

Once the Google ADK was announced, the team over at [ElectFreaks] jumped right in and started experimenting to see what they could do with the new Arduino/Android interface. While the ADK was great for allowing the two devices to interact over a USB connection, they felt that the system would be far better if it allowed for wireless communications instead.

They added a Bluetooth Bee to their Arduino setup and got busy writing an Android application that uses the handset’s built in Bluetooth module to communicate using the ADK. The application configures your phone to act as either a client or server when pairing. This does not affect data flow, as communications are bi-directional, it merely decides which device is placed in discoverable mode.

As you can see in the second part of their post, once the phone and Arduino are connected, it is quite easy to send serial data back and forth between the two devices.

As of right now, their Bluetooth API is in Beta, so things might still be a bit rough around the edges. They do encourage anyone to download and modify the code, which is freely available on their site.