iphone_universal_ir_dongle

IPhone-based Universal IR Remote

If you have a reasonable home theater setup in your living room, odds are you have up to half a dozen remotes sitting around. Short of trying to get your cable receiver’s remote to control everything or laying down some cash for a Harmony remote, what’s a hacker to do?

[Andrey] decided he wanted to use his iPhone as a universal IR remote, but he didn’t want to pay very much to do so. Instead of buying a dongle at the store, he soldered some IR LEDs to an old headphone plug, creating a mini IR dongle to control his equipment. After studying IR signaling a bit, he got to work encoding IR remote commands into wav files using Python. The files are then played on his iPhone, allowing him to submit certain commands to his TV set.

Unfortunately, the process of manually converting IR codes to audio files doesn’t quite seem like the most efficient way of doing things. There are other IR dongles currently on the market that utilize the headphone jack, most of which provide pretty robust software for free. These might make a good alternative to manually creating audio files for each IR command. We honestly haven’t seen any teardowns of these retail IR dongles posted online, but it would be interesting to see how they compare to what [Andrey] has put together.

Remote Phone Control Using Bluetooth And A Video Stream

remote_bluetooth_phone_control

Hack-a-Day reader [Bobbie] sent us a hack that is an adaptation of the automatic cell phone button pushing machine we featured earlier this week. Inspired by that project, he challenged himself to construct a more efficient way to tackle the problem.

He started out in much the same fashion, pointing a camera at the phone in order to view the display remotely. The main thing he focused on to make his project unique was they way in which the buttons on the phone were activated. He was impressed by the mechanical button pressing rig, but thought it to be overly complicated. Instead, he decided to send button presses over Bluetooth to his phone which happened to be AT+CKPD compatible (PDF).

Not only that, his interface is quite impressive too. Originally planning to use the keyboard to send input to the phone, he changed course and programmed his video stream GUI to register mouse clicks instead. Now, when he clicks one of the phone’s buttons in the video display, the appropriate button press is sent to the phone – Awesome!

Keep reading to see a video of his remote phone interface, you’ll be glad you did.

Continue reading “Remote Phone Control Using Bluetooth And A Video Stream”

Machine Pushes Cellphone Buttons From Anywhere In The World

[Mok Young Bacq] works on the weekends for mobile game monitoring service. He has three cellphones that he uses for work, and although you would think this means he could work from anywhere in the world, the roaming charges are a killer. His solution was to build an incredibly intricate machine that can use three different cellphones (PDF) on his behalf.

Above you can see it perched underneath the apex of the ladder, but you’re definitely going to want to watch the video after the break. This interface method uses a camera to look at each phone. It’s hung pointing downward and moves like a pendulum to look at one of the three screens at a time. Each phone has one servo motor for each button, which uses a flexible cable as an actuator. Now he can take trips abroad, just checking in over the Internet for his two 17-hour weekend shifts (10am to 3am the next morning) working the phones.

This reminds us of the cellphone endurance tests. What happens when a button stops working?

Continue reading “Machine Pushes Cellphone Buttons From Anywhere In The World”

Reverse Engineering A Mobile Phone E-paper Display

msp430_epaper_display

While e-paper is common among e-readers, there are very few, if any phones other than the MOTOFONE that exclusively use an e-paper display. [Steve] had one of these phones sitting around and thought it could be used to build a low-power clock. Since the bistable e-paper display can retain the currently active content even when power is removed, he would only need to update the clock once a minute, when the time changed.

Unfortunately for him, very little publicly-available documentation exists for the display controller Motorola used. To get an idea of how the display was driven, he had to sniff the SPI communications between the processor and the display. Once he had the basic commands down, he spent quite a bit of time figuring out how to activate the different segments of the display, due to what seems to be a rushed design process on Motorola’s part.

Now that [Steve] had reverse-engineered just about everything, he connected the phone to a TI MSP430 to drive the display. He programmed the LaunchPad to serve as a basic clock with great results, as you can see in the video below.

If your interest in e-paper hacking has been piqued, be sure to check out our previous e-paper coverage here.

Continue reading “Reverse Engineering A Mobile Phone E-paper Display”

ITalkman Refrigerated Franken-phone

italkman_frankenphone

[Jani] over at MetkuMods was commissioned to build a prize for an on-air contest held by MTV3 in Finland. Well known for some of his previous work, he was a natural choice for this project. The only stipulation for the build was that it contain three specific items: a Mobira mobile phone, an Apple iPhone, and a refrigerator. For those of you who don’t know, a Mobira Talkman is an old-school “mobile” phone built by Nokia in the 80’s that weighed in at 11 pounds, and was far from convenient to use. In this case however, the size of the phone is an advantage since he was able to gut it and use the frame to make up the body of the refrigerated compartment. He sacrificed a soft-side portable heater/cooler bag, removing the built-in peltier cooler and associated components, later grafting them onto his Talkman case.

The next task was to add the iPhone to the Talkman. Rather than have the old handset sit there uselessly, [Jani] decided to mount a small Bluetooth hands-free module inside the handset, allowing it to answer calls, adjust the volume, and change music tracks on the iPhone. The iPhone was put in a hard plastic case, then mounted to the Talkman handset where the keypad and display used to reside.

All in all, the iTalkman is a pretty cool looking device, though we wouldn’t want to be tasked with lugging that thing around all day!

Modern Freaking: Pull Phone Numbers From YouTube Audio

[Charlie X-Ray] is having some modern fun with the phone system by pulling dialed numbers from the audio track of YouTube videos (translated). The first step was to find a video where a telephone is being dialed and the sounds of the keypresses are audible. You can’t tell those tones apart, but a computer can. That’s because each number pressed generates a combination of two out of seven closely related frequencies. [Charlie] isolated the audio using Audacity, then wrote a python script to generate a spectrogram like the one above. By matching up the two dark nodes you can establish which two frequencies were played and decode the phone number being dialed. So how does this work again… find audio of a phone being dialed, decode the number.. profit?

SMS Controlled Irrigation

[Mhkabir] built an irrigation system that communicates by text message. The concept is simple, sending a text message to the system will cause it to switch on the water pump.

Many times we see text message manipulation via the Internet, or using a GSM module. But in this case an inexpensive cellphone is used as the communication interface. The vibration motor has been removed and those connections are monitored to signal incoming messages. Wire leads were soldered to the keypad contacts which allow an Arduino to send out text messages when there is a problem with watering. This isn’t an iron-clad system, as any incoming message will trigger the system and outgoing messages are limited to saved drafts. But a bit of creative programming and we’re sure more functionality could be squeezed out of this hardware.