Thanks to the hard work of Ken Shirriff over at http://www.arcfn.com/2009/08/multi-protocol-infrared-remote-library.html I am having great fun playing with infra red remote control.
I would like to document my experiences as well as what I have gleaned from it.
Main notes:
The IR receiver needs to have a connection to +5v, gnd and the output goes to digital pin 11 (hardcoded into the library).
With my particular IR receiver it looks like this:

I found that the IR transmitter needs to be amplified to allow the equipment to detect the IR signal, I am using a bc547.
My amplifier circuit looks like this:

arduino digital pin 3 — 120 ohm resistor — bc547 pin 2 (base)
bc547 pin 1 (collector) — IR LED cathode (short pin/negative/flat side) –IR-LED– IR LED anode — +5v
bc547 pin 3 (emitter) — gnd

————
Placeholder
coming soon: networked remote control code for ethernet/SD header
————
Important notes:
* when sending RC6 IR signals each alternate emulated button press needs ORing with 0×80000 (setting the toggle bit) or the code will be ignored by the receiver.
* Send the signal at least twice with a delay(50); between them to ensure the receiver receives and processes the signal.
* If you transmit a signal and need to receive a signal, reinitialise the receive code every time or the IR receiver will not work (I have been led to believe this by a comment on the arcfn blog)
* In testing, replace the IR LED with a normal LED so you can see if the circuit is transmitting
—————————-
9 January 2012 update:
<?php
$p = $_GET['command'];
$device = "/dev/ttyACM0";
exec("echo $p > $device");
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Arduino LED control</title>
</head>
<body>
<div id="mapdiv">
<map id="sony" name="sony">
<area shape="rect" alt="" title="Eject" coords="25,35,55,48" href="/1.php?command=SONY,3C108,20" target="_self" />
<area shape="rect" alt="" title="Speakers TV <-> Audio" coords="66,37,97,48" href="/1.php?command=SONY,A210C,20" target="_self" />
<area shape="rect" alt="" title="TV power" coords="108,37,138,48" href="/1.php?command=NEC,20DF10EF,32" target="_self" />
<area shape="circle" alt="" title="Power" coords="163,42,12" href="/1.php?command=SONY,540A,15" target="_self" />
<area shape="rect" alt="" title="Dimmer" coords="25,71,56,83" href="/1.php?command=SONY,590A,15" target="_self" />
<area shape="rect" alt="" title="Sleep" coords="25,101,55,113" href="/1.php?command=SONY,30A,15" target="_self" />
<area shape="rect" alt="" title="Function" coords="25,131,57,144" href="/1.php?command=SONY,4B0B,15" target="_self" />
<area shape="circle" alt="" title="1" coords="80,74,9" href="/1.php?command=SONY,108,20" target="_self" />
<area shape="circle" alt="" title="2" coords="121,76,10" href="/1.php?command=SONY,80108,20" target="_self" />
<area shape="circle" alt="" title="3" coords="162,75,9" href="/1.php?command=SONY,40108,20" target="_self" />
<area shape="circle" alt="" title="4" coords="80,105,9" href="/1.php?command=SONY,C0108,20" target="_self" />
<area shape="circle" alt="" title="5" coords="120,106,9" href="/1.php?command=SONY,20108,20" target="_self" />
<area shape="circle" alt="" title="6" coords="162,106,9" href="/1.php?command=SONY,A0108,20" target="_self" />
<area shape="circle" alt="" title="7" coords="81,136,10" href="/1.php?command=SONY,60108,20" target="_self" />
<area shape="circle" alt="" title="8" coords="120,136,9" href="/1.php?command=SONY,E0108,20" target="_self" />
<area shape="circle" alt="" title="9" coords="161,136,10" href="/1.php?command=SONY,10108,20" target="_self" />
<area shape="circle" alt="" title="0" coords="121,166,10" href="/1.php?command=SONY,90108,20" target="_self" />
<area shape="rect" alt="" title="Favourite" coords="25,162,55,172" href="/1.php?command=SONY,D210C,20" target="_self" />
<area shape="rect" alt="" title="O)))" coords="67,162,96,173" href="/1.php?command=SONY,48108,20" target="_self" />
<area shape="rect" alt="" title="[...]" coords="148,162,178,175" href="/1.php?command=SONY,88108,20" target="_self" />
<area shape="rect" alt="" title="red" coords="26,192,56,204" href="/1.php?command=SONY,A010C,20" target="_self" />
<area shape="rect" alt="" title="green" coords="67,192,95,204" href="/1.php?command=SONY,6010C,20" target="_self" />
<area shape="rect" alt="" title="yellow" coords="108,192,137,202" href="/1.php?command=SONY,E010C,20" target="_self" />
<area shape="rect" alt="" title="blue" coords="148,191,178,203" href="/1.php?command=SONY,2010C,20" target="_self" />
<area shape="circle" alt="" title="Top menu" coords="34,228,8" href="/1.php?command=SONY,98108,20" target="_self" />
<area shape="circle" alt="" title="Popup menu" coords="166,228,8" href="/1.php?command=SONY,58108,20" target="_self" />
<area shape="rect" alt="" title="up" coords="69,223,132,242" href="/1.php?command=SONY,1E108,20" target="_self" />
<area shape="rect" alt="" title="left" coords="48,239,68,292" href="/1.php?command=SONY,5E108,20" target="_self" />
<area shape="circle" alt="" title="+" coords="100,267,20" href="/1.php?command=SONY,3E108,20" target="_self" />
<area shape="rect" alt="" title="right" coords="133,240,153,293" href="/1.php?command=SONY,DE108,20" target="_self" />
<area shape="rect" alt="" title="down" coords="70,291,131,309" href="/1.php?command=SONY,9E108,20" target="_self" />
<area shape="circle" alt="" title="Return" coords="32,303,8" href="/1.php?command=SONY,BE108,20" target="_self" />
<area shape="circle" alt="" title="Options" coords="166,302,8" href="/1.php?command=SONY,CE108,20" target="_self" />
<area shape="circle" alt="" title="Sound mode -" coords="32,335,8" href="/1.php?command=SONY,3D0B,15" target="_self" />
<area shape="rect" alt="" title="Home" coords="64,327,135,343" href="/1.php?command=SONY,700B,15" target="_self" />
<area shape="circle" alt="" title="Sound mode +" coords="167,334,8" href="/1.php?command=SONY,690B,15" target="_self" />
<area shape="rect" alt="" title="|<< Preset -" coords="25,359,55,376" href="/1.php?command=SONY,C108,20" target="_self" />
<area shape="rect" alt="" title="<-o" coords="66,360,95,374" href="/1.php?command=SONY,84108,20" target="_self" />
<area shape="rect" alt="" title="o->" coords="107,360,136,375" href="/1.php?command=SONY,4108,20" target="_self" />
<area shape="rect" alt="" title=">>| Preset +" coords="147,360,177,375" href="/1.php?command=SONY,8C108,20" target="_self" />
<area shape="rect" alt="" title="<< Tuning -" coords="23,389,57,406" href="/1.php?command=SONY,CC108,20" target="_self" />
<area shape="rect" alt="" title="> Play" coords="65,390,136,405" href="/1.php?command=SONY,200B,15" target="_self" />
<area shape="rect" alt="" title=">> Tuning +" coords="146,391,177,405" href="/1.php?command=SONY,2C108,20" target="_self" />
<area shape="rect" alt="" title="Display" coords="25,421,56,438" href="/1.php?command=SONY,18108,20" target="_self" />
<area shape="rect" alt="" title="Pause" coords="84,421,116,435" href="/1.php?command=SONY,400B,15" target="_self" />
<area shape="rect" alt="" title="Stop" coords="147,420,178,436" href="/1.php?command=SONY,B,15" target="_self" />
<area shape="circle" alt="" title="Mute" coords="38,484,8" href="/1.php?command=SONY,140A,15" target="_self" />
<area shape="rect" alt="" title="Volume +" coords="61,457,88,487" href="/1.php?command=SONY,240A,15" target="_self" />
<area shape="rect" alt="" title="TV volume +" coords="113,456,139,485" href="/1.php?command=NEC,20DF40BF,32" target="_self" />
<area shape="circle" alt="" title="TV input" coords="166,481,8" href="/1.php?command=NEC,20DFC23D,32" target="_self" />
<area shape="rect" alt="" title="Volume -" coords="62,487,88,512" href="/1.php?command=SONY,640A,15" target="_self" />
<area shape="rect" alt="" title="TV volume -" coords="113,485,140,511" href="/1.php?command=NEC,20DFC03F,32" target="_self" />
</map>
<map id="skyplushdremote" name="skyplushdremote">
<area shape="circle" title="tv" alt="" coords="53,59,13" href="/1.php?command=" target="_self" />
<area shape="circle" title="power" alt="" coords="150,54,12" href="/1.php?command=RC6,C05C0C,24" target="_self" />
<area shape="circle" title="sky" alt="" coords="98,77,12" href="/1.php?command=RC6,C05C80,24" target="_self" />
<area shape="circle" title="tv guide" alt="" coords="40,129,12" href="/1.php?command=RC6,C05CCC,24" target="_self" />
<area shape="circle" title="box office" alt="" coords="67,101,11" href="/1.php?command=RC6,C05C7D,24" target="_self" />
<area shape="circle" title="services" alt="" coords="132,103,12" href="/1.php?command=RC6,C05C7E,24" target="_self" />
<area shape="circle" title="interactive" alt="" coords="160,129,11" href="/1.php?command=RC6,C05CF5,24" target="_self" />
<area shape="circle" title="i" alt="" coords="134,153,10" href="/1.php?command=RC6,C05CCB,24" target="_self" />
<area shape="circle" title="mute" alt="" coords="66,151,9" href="/1.php?command=NEC,20DF906F,32" target="_self" />
<area shape="rect" title="v+" alt="" coords="25,175,45,211" href="/1.php?command=NEC,20DF40BF,32" target="_self" />
<area shape="rect" title="v-" alt="" coords="24,213,49,250" href="/1.php?command=NEC,20DFC03F,32" target="_self" />
<area shape="rect" title="ch+" alt="" coords="151,174,177,210" href="/1.php?command=RC6,C05C20,24" target="_self" />
<area shape="rect" title="ch-" alt="" coords="152,210,173,253" href="/1.php?command=RC6,C05C21,24" target="_self" />
<area shape="rect" title="left" alt="" coords="57,187,77,233" href="/1.php?command=RC6,C05C5A,24" target="_self" />
<area shape="rect" title="up" alt="" coords="82,162,121,188" href="/1.php?command=RC6,C05C58,24" target="_self" />
<area shape="rect" title="right" alt="" coords="124,193,145,228" href="/1.php?command=RC6,C05C5B,24" target="_self" />
<area shape="rect" title="down" alt="" coords="83,235,124,258" href="/1.php?command=RC6,C05C59,24" target="_self" />
<area shape="circle" title="select" alt="" coords="100,211,18" href="/1.php?command=RC6,C05C5C,24" target="_self" />
<area shape="circle" title="text" alt="" coords="49,274,12" href="/1.php?command=RC6,C05C3C,24" target="_self" />
<area shape="circle" title="help" alt="" coords="151,276,11" href="/1.php?command=RC6,C05C81,24" target="_self" />
<area shape="rect" title="back up" alt="" coords="80,265,119,286" href="/1.php?command=RC6,C05C83,24" target="_self" />
<area shape="rect" title="<<" alt="" coords="42,298,59,331" href="/1.php?command=RC6,C05C3D,24" target="_self" />
<area shape="rect" title="pause" alt="" coords="79,295,121,317" href="/1.php?command=RC6,C05C24,24" target="_self" />
<area shape="rect" title="play" alt="" coords="78,317,120,340" href="/1.php?command=RC6,C05C3E,24" target="_self" />
<area shape="rect" title=">>" alt="" coords="142,300,156,332" href="/1.php?command=RC6,C05C28,24" target="_self" />
<area shape="circle" title="record" alt="" coords="77,356,12" href="/1.php?command=RC6,C05C40,24" target="_self" />
<area shape="circle" title="stop" alt="" coords="120,355,11" href="/1.php?command=RC6,C05C3F,24" target="_self" />
<area shape="circle" title="red" alt="" coords="51,376,10" href="/1.php?command=RC6,C05C6D,24" target="_self" />
<area shape="circle" title="green" alt="" coords="85,386,10" href="/1.php?command=RC6,C05C6E,24" target="_self" />
<area shape="circle" title="yellow" alt="" coords="108,378,0" href="/1.php?command=RC6,C05C6F,24" target="_self" />
<area shape="circle" title="blue" alt="" coords="146,379,12" href="/1.php?command=RC6,C05C70,24" target="_self" />
<area shape="circle" title="1" alt="" coords="64,421,14" href="/1.php?command=RC6,C05C01,24" target="_self" />
<area shape="circle" title="2" alt="" coords="100,425,15" href="/1.php?command=RC6,C05C02,24" target="_self" />
<area shape="circle" title="3" alt="" coords="138,421,15" href="/1.php?command=RC6,C05C03,24" target="_self" />
<area shape="circle" title="4" alt="" coords="60,457,14" href="/1.php?command=RC6,C05C04,24" target="_self" />
<area shape="circle" title="5" alt="" coords="100,458,14" href="/1.php?command=RC6,C05C05,24" target="_self" />
<area shape="circle" title="6" alt="" coords="137,457,14" href="/1.php?command=RC6,C05C06,24" target="_self" />
<area shape="circle" title="7" alt="" coords="61,494,14" href="/1.php?command=RC6,C05C07,24" target="_self" />
<area shape="circle" title="8" alt="" coords="100,493,13" href="/1.php?command=RC6,C05C08,24" target="_self" />
<area shape="circle" title="9" alt="" coords="139,494,14" href="/1.php?command=RC6,C05C09,24" target="_self" />
<area shape="circle" title="0" alt="" coords="97,532,13" href="/1.php?command=RC6,C05C00,24" target="_self" />
</map>
</div>
<img src="blurayremote.jpg" usemap="sony">
<img src="skyplushdremote.jpg" usemap="skyplushdremote">
</body>
</html>
And the images:
