How to Control Your TV with Your Phone

Control your TV, DVD, Stereo, DVR, Cable box, Mac, Xbox, or any other IR device with the Web Clicker!

The Web Clicker is a web server & IR transceiver.  You can record any IR command and play it back via an AJAX web interface or just by requesting a URL.  It works great from a cell phone and it's especially handy for home automation projects. 
Control Your TV with Your Phone



Here's a little demo;



Continue on and I'll answer a few questions and then show you how to make it.

Step 1FAQ


What can I do with it?

The Web Clicker can control any IR device (TV, DVD, Stereo, etc) simply by requesting a URL. There's also an AJAX based control page so you can use it with a web browser, like on your iPhone or computer.

The Web Clicker is awesome for home automation projects because of it's ease of implementation - just request a URL and you'll generate an IR signal or trigger a series of IR signals

Why?
I built the web clicker mostly for home automation - I have a MythTV DVR that uses an RF remote.  Now, I've set it up so when I push the power button on the remote, the DVR makes a page request to the Web Clicker and it generates the correct IR signal.

How?
The Web Clicker is a Propeller Platform USB and E-Net Module, and a very basic IR circuit.  Web server code is based on PropTCP, by Harrison Pham, and I wrote a custom object (Magic IR) for capturing and playing back IR signals.

I started researching IR control schemes - after a few days of work, I decided it would be better to code my own IR recorder - this way it's compatible with any TV without having to look through a huge code list.  It's like a learning remote that has greater than 100ns accuracy & unlimited storage capacity.

I'm using a 38kHz IR receiver, which is the most common (95% of devices).  If your devices uses another frequency, it's easy to use a different IR receiver.

All the software & hardware is available under the MIT license, which is essentially public domain.

Using it
I'll get into using it in a bit, but here's the big picture;
  1. Enter the webserver address into your browser
  2. Hit 'Record' to capture IR commands
  3. Initiate playback either by:
    1. requesting a URL (something like: http://192.168.1.252/exec.cgi?x- where x is the command number), or,
    2. through the web interface on your smart phone or PC.

Step 2Make it: Materials


Make it: Materials
  • 4948322243_9c7152de0b.jpg
  • 4948319811_17db18e6f7.jpg
  • 4948904228_86233c47e5.jpg

The Web Clicker is based on a Propeller Platform USB and an E-Net Module.  The Prop Platform USB comes pre-assembled, and the E-Net is a kit.

You can probably build this all on a breadboard or protoboard (except for the RJ45 jack), but it might get pretty cumbersome & out of place for your TV cabinet. I suggest using a custom board.


Propeller Platform USB

You can grab one here, it comes pre-assembled.  You can also download the PCB design (diptrace format) and etch it yourself.  Most parts are commodity (47uF Electrolytics, 4.7uF Tantalum, Prop, Tactile Switch), a few specific parts;

Voltage Regulators
Use mouser part 511-LD29150DT33R and 511-LD29150DT50R to make sure you have the same pin-out & package size

EEPROM
Use mouser part 556-A24C512BNSH25T, this is a 64kb eeprom so you can use the program on the bottom 32k and load your IR codes to the top 32k.

SD card slot
Use mouser part 798-DM3D-SF, this is a push-pull slot, so it's easier to re-work if you have any problems.


E-Net module

kit is available here, or you can grab the PCB layout here to etch it yourself.  Here's the schematic (pdf), only a few special parts;

ENC28J60
It's mouser part 579-ENC28J60/SP, make sure you get the DIP-28 package.

PulseJack
Mouser part 673-J00-0065NL

Additional Parts

In addition to the E-Net and Prop Platform SD, you'll need 2 more parts;

IR Receiver
You'll only use this once to capture IR codes, this vishay (mouser part 782-TSOP4838) is nice because it works at 5v & 3v.  It's a 38kHz receiver, which is the most common, they also make receivers for other modulations.

IR LED
No special trick to transmitting IR codes, you just need a generic IR LED.  This one (mouser part 638-IR333-A ) works for me.

Step 3Make it: Schematic


Make it: Schematic

The schematic for the Propeller Platform USB is here (pdf), and the E-net module schematic is here(pdf).  If you've etched your own E-Net module or bought the kit, assembly instructions for it are here.

In addition to the E-Net and Propeller Platform, you'll also need to build a simple IR transmit / receive circuit.  Here it is;


I'm using the wrong symbol for an IR receiver,  but it's the device at U1.  Hopefully it doesn't look too complicated - you just hook the long lead of the LED to P12, the short leg to ground.  Hook up the first pin of the IR receiver (the pin on the left when the dome is facing up) to P12, the middle pin to ground, and the 3rd pin to V33.  Here the circuit is on a ProtoPlus.

Step 4Make it: Software


Make it: Software
Grab the code
Download all the code here, copy to your desktop and unzip it.

Edit the settings
The webserver IP stuff needs to be set up.  First, download the Propeller Tool (WindowsMacLinux), then open up Top_object.spin.  Towards the beginning, you'll see where the IP settings are;


Change them if necessary, connect the Propeller Platform USB, save the file and hit F11 to program the Propeller Platform.
  • mac_addr doesn't really matter, you should be able to keep it as is
  • ip_addr The Web Clicker doesn't use DHCP, just pick an IP address on your local network that isn't being used.
  • IP_subnet probably 255.255.255.0.  If that doesn't work, take a look at your PC and see what the subnet setting is - use the same setting on the Web Clicker
  • ip_gateway IP address of your router
  • ip_dns IP address of your router
That's it!  Your Web Clicker is ready to go.  Now, just connect to your network - in the next step, I'll show you how to record & script commands.

Step 5Home Automation-ing


Home Automation-ing
In your web browser, type in the IP address you set in the previous step.  You'll get this web interface;

Code Capture
Here's how it works;  Type a code name (maybe 'Power', or 'Vol+', or whatever makes sense) in the box, then click on the 'Start Recording' button.  put your IR remote up to the IR receiver and push the button.  The command will be stored and the command list will dynamically be updated.  To play that code via the web interface just click on the 'Play Code' link next to the command name.  To clear the commands, click on the 'Clear Commands' link.

Scripting
Once the command has been recorded, you can easily script it.  In Linux / Mac, you just need to make a page request to the web clicker to send the IR;
wget 192.168.1.252/exec.cgi?0- >> /dev/null 2>&1
Will execute the first command on the list (Power on my Web Clicker)

wget 192.168.1.252/exec.cgi?1- >> /dev/null 2>&1
Will execute the second command, and so on.  Change the number after the ? in the url to execute a different command.  The >> /dev/null 2>&1 redirects the program output (and any error codes) to the trash - this is for non-interactive scripting.

If you're using curl, the command is almost the same;
curl --url 192.168.1.252/exec.cgi?1- >> /dev/null 2>&1

You could associate this command with a LIRC input, a chron job, or whatever else.  I don't know how to script in windows, but you can download wget for Windows & that's probably the first step.

Step 6Next Steps


Next Steps

Once your Web Clicker is up and running, you'll probably want to tweak it / play with it!  Here are a few ideas to get you started;

Local File Storage
The Propeller Platform USB has a microSD / microSDHC card slot so you can add up to 32GB of local file storage.  You could serve MP3's, pictures or whatever else.  You could also use the SD card for data logging.  To start playing with the SD card, grab the fsrw object.

Multiple IR transmissions with a single command
Take a look at the source code - towards the top, there's a section of 'Elseif', which tell the Web Clicker what to do when a command request is received.  You can make the device do anything in response to a command, including sending several IR blasts.

Controlling a motor, switch, light, or anything else
Why not use the Web Clicker to turn on a motor, change a light, play back a wav file or something else?  It's the same process as adding multiple IR transmissions - look at the code with the Elseif commands - instead of playcommand(x), change it to your newly created method.

That's it!  I had a lot of fun putting the Web Clicker together - let me know if you've got any questions or comments!
0 Comments
Disqus
Fb Comments
Comments :

0 comments:

Post a Comment