Dissecting the SoundGraph iMON MM

Correction: The device is actually an iMON Multi-Median (MM), which includes an IR receiver and a remote control.

My friend recently passed me a brand new unopened SoundGraph iMON IR receiver device. Here’s how it looks like:

As you can see from the box, it supports up till Windows XP. If you’re thinking how the terms “Windows XP” and “brand new unopened” go together, it’s because he’s kept it for 4 years.

The receiver is quite interesting, it’s a transparent orb with the usual IR filter at the front. I can’t help but notice the PCB looks like it only has a few components in it. And you know what Dave from the EEVBlog always says: “don’t turn it on, take it apart!”

Unsurprisingly, it uses a Cypress Semiconductor CY7C63221A for USB communication. Cypress Semiconductor is quite well-known for manufacturing single ICs which combine a USB transceiver and microcontroller to lower component count. You can find their chips in some keyboards and maybe mice as well. The CY7C63221A is already obsolete, but luckily Octopart still has a cached copy of the datasheet.

In the middle is the IR receiver, which is a 3-terminal device that (I assume) decodes 36-38 kHz modulated IR signals and outputs the de-modulated signal.

So it looks like I won’t be able to tell how it communicates just by looking at the chip, but at least it’s supported by LIRC. I’ll probably hook it up and try it out when I have time.

Repairing an Akira DVD Player

This was my first time trying to really repair something, and I’m forced to do it. It’s an Akira DVD player that is used as an audio CD player.

When I received the unit, I plugged it in and turned it on. Hmmm… nothing happened, so I opened it up to see what’s wrong. Apparently it has bulged capacitors, which is quite a common problem.

I guess the main cause was the 100μF smoothing capacitor that’s placed directly after the rectifier bridge. You can see the rectifier chip to the right of the large capacitor.

There were also some that were around the board that may not be related, but I just replaced them all at one go anyways.

I tried to remove the solder using a spring-powered desoldering pump but I couldn’t remove the solder from some holes. Instead I just pushed the component lead through while heating up the solder, which is a really bad way to solder but hey, any more heat I apply could just damage the PCB traces.

After replacing the capacitors, the unit managed to power up. However, the LED that was powering the LCD screen backlight was flickering. I found that odd actually, but I really didn’t want to investigate it. Also, the springy audio connectors for the speaker wires at the back were also broken, but I have no idea where to find a replacement for it.

The amount of work required? The capacitors totaled to S$6, but I made 2 trips to get the components (because I missed out some capacitors), and I spent an evening replacing the capacitors. If I had to spend more time figuring out the problems, it would have been longer.

I think such repairs are really not worth it because you have to spend time understanding the circuit before you can really fix the problem (in the case of the LED backlight). If it was something antique and worth fixing it wouldn’t have been so bad, but this is just some cheap off-the-shelf audio system you can buy easily.

Oh well, at least it’s done and I can get it off my hands.

iOS Profiles & Encrypted Backups

When I got my iPhone, it uses a 4-digit passcode to protect its contents. Unsatisfied with this, I found the iPhone Configuration Utility (iPCU), which was the only way at that time to enable complex passcodes (passwords) on the phone. After creating a profile and uploading it to the phone using the iPCU, my backups were all forced to be encrypted.

Encrypted backups are not good for tinkering because you need to decrypt the files before you can edit them, and you need to re-encrypt them for it to be restored to the phone. I’m not sure about the encryption scheme, or which programs can access encrypted backups since the encryption happens on the phone.

I don’t remember seeing an option in the iPCU that says “Force iTunes encryption” or similar, so why was this happening? Recently when I was digging through the iPhone OS Enterprise Deployment Guide, I found an important note, under “Backing Up a Device with iTunes”, that reads “If the device being backed up has any encrypted profiles installed, iTunes requires the user to enable backup encryption.”

If you upload any profiles using iPCU, it’s convenient – it goes into the phone directly, but at the same time it also encrypts the configuration for the phone.

For my new iOS devices I simply signed it, and uploaded onto a web server and accessed it from the device. This prevents the backups from being forced to be encrypted, but at the same time it creates a chicken and egg problem – how does my device access the web server without the WiFi profile settings?

I’ll look into that another time.

“Personal [WiFi] Hotspot” comes to iPhone 4 CDMA

Apple has just announced a new iPhone 4 hardware revision that allows it to be used on CDMA networks.

[photo stolen from Ars Technica]

Interestingly, the new iPhone comes with a Personal Hotspot preference that allows it to share its 3G connection over WiFi. Ars Technica has photos of the new preference menus. I must stress the photos shown here were not taken by me.

Of course the Android people have had this for a while (provided their phones could be updated to Froyo). They called it the Portable Wi-Fi hotspot.

I hope Apple rolls this out to the rest of the iPhone users, and hopefully if it isn’t enabled by default, it will have some secret pref that allows it to be activated easily.

RS232 converter + TTL-232R-3V3

If you’re into microcontrollers like me, you should have an FTDI breakout board or the more handy FTDI TTL-232R-3V3 cable. This cable integrates an FTDI USB-to-serial chip and terminates into a 6-pin header, with TTL in/outputs, ready to be interfaced to any microcontroller.

Recently I had to talk to an RS232 port. The voltage used by the RS232 port is anywhere from 7 to 15V (typically), and uses both positive and negative voltages, which cannot be directly interfaced with TTL. Most of my university friends who took microcontroller class previously bought an RS232-to-USB converter, since that’s what the trainer board (evaluation board) uses, but not me. So what should I do now?

Using a MAX232 (actually a HIN232) chip and 5 capacitors, I followed the recommended application circuit to build a level shifter. I laid out the circuit on a veroboard with a 6-pin header on one end for the TTL-232R-3v3 cable, and a 2×5 header for the RS232 port.

Since I ripped out many old computers with those serial port headers I decided to use it. The pinout for the RS232 port header is available in many motherboard manuals, including mine. The only pins (usually) of interest are circled. The pins are 2, 3 and 5 for receive, transmit and ground, respectively.

Continue reading