<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: How-to: USB remote control receiver</title>
	<atom:link href="http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/feed/" rel="self" type="application/rss+xml" />
	<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/</link>
	<description>Fresh hacks every day</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:41:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: nOOb</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-391738</link>
		<dc:creator><![CDATA[nOOb]]></dc:creator>
		<pubDate>Mon, 09 May 2011 04:50:55 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-391738</guid>
		<description><![CDATA[someone has remove the rc5 (manchester code)in this project?
how to?
any example or hex file

thankyou]]></description>
		<content:encoded><![CDATA[<p>someone has remove the rc5 (manchester code)in this project?<br />
how to?<br />
any example or hex file</p>
<p>thankyou</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mitron</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-391693</link>
		<dc:creator><![CDATA[mitron]]></dc:creator>
		<pubDate>Mon, 09 May 2011 00:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-391693</guid>
		<description><![CDATA[&quot;We chose to specifically decode RC5 (and RC5x) because it’s a widely used protocol, and the only type of remote we have to work with. Most of the decoding is done in the interrupt handler:

    The first signal change triggers an interrupt that starts a 889us (one-half bit period) timer.
    On each timer interrupt, one-half of a Manchester coded bit is sampled.
    Every other interrupt the measurements are compared, and the bit value is calculated to be 0, 1, or an error. Errors reset the decoding routing.
    At the end of each transmission the address and command bytes are decoded, and sent to the host with 4 buffer bytes(0). We discard the toggle bit because it would confuse the PC software into thinking every other press was a unique code. We append the second start bit to the command bit for RC5x compliance; this just adds 0×40 to non RC5x remote codes.

A more general version can be made by removing the Manchester coding step (3), and sending 48 sample bits (all 6 bytes) to the computer.&quot;

someone has done this?
remove the manchester decoding function and set as irman to decode any remote control?
thx]]></description>
		<content:encoded><![CDATA[<p>&#8220;We chose to specifically decode RC5 (and RC5x) because it’s a widely used protocol, and the only type of remote we have to work with. Most of the decoding is done in the interrupt handler:</p>
<p>    The first signal change triggers an interrupt that starts a 889us (one-half bit period) timer.<br />
    On each timer interrupt, one-half of a Manchester coded bit is sampled.<br />
    Every other interrupt the measurements are compared, and the bit value is calculated to be 0, 1, or an error. Errors reset the decoding routing.<br />
    At the end of each transmission the address and command bytes are decoded, and sent to the host with 4 buffer bytes(0). We discard the toggle bit because it would confuse the PC software into thinking every other press was a unique code. We append the second start bit to the command bit for RC5x compliance; this just adds 0×40 to non RC5x remote codes.</p>
<p>A more general version can be made by removing the Manchester coding step (3), and sending 48 sample bits (all 6 bytes) to the computer.&#8221;</p>
<p>someone has done this?<br />
remove the manchester decoding function and set as irman to decode any remote control?<br />
thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bala</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-309971</link>
		<dc:creator><![CDATA[bala]]></dc:creator>
		<pubDate>Thu, 20 Jan 2011 10:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-309971</guid>
		<description><![CDATA[i need driver for pic 18f4550 plz]]></description>
		<content:encoded><![CDATA[<p>i need driver for pic 18f4550 plz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crizr</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-296289</link>
		<dc:creator><![CDATA[crizr]]></dc:creator>
		<pubDate>Tue, 04 Jan 2011 19:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-296289</guid>
		<description><![CDATA[For the firmware, use the USB IR Toy one from Dangerous Prototypes:

http://dangerousprototypes.com/category/infrared-toy/

http://code.google.com/p/dangerous-prototypes-open-hardware/downloads/detail?name=USBIRToy.firmware.v09.zip]]></description>
		<content:encoded><![CDATA[<p>For the firmware, use the USB IR Toy one from Dangerous Prototypes:</p>
<p><a href="http://dangerousprototypes.com/category/infrared-toy/" rel="nofollow">http://dangerousprototypes.com/category/infrared-toy/</a></p>
<p><a href="http://code.google.com/p/dangerous-prototypes-open-hardware/downloads/detail?name=USBIRToy.firmware.v09.zip" rel="nofollow">http://code.google.com/p/dangerous-prototypes-open-hardware/downloads/detail?name=USBIRToy.firmware.v09.zip</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DANIEL</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-296173</link>
		<dc:creator><![CDATA[DANIEL]]></dc:creator>
		<pubDate>Tue, 04 Jan 2011 16:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-296173</guid>
		<description><![CDATA[LINK TO DOWNLOAD THE PROJECT IS BROKEN, PLEASE POST AGAIN. THANK YOU]]></description>
		<content:encoded><![CDATA[<p>LINK TO DOWNLOAD THE PROJECT IS BROKEN, PLEASE POST AGAIN. THANK YOU</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: st2000</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-216662</link>
		<dc:creator><![CDATA[st2000]]></dc:creator>
		<pubDate>Mon, 22 Nov 2010 21:13:57 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-216662</guid>
		<description><![CDATA[@Francirius
Agreed, please re-post the project&#039;s files.  However, in the mean time, Francirius, google for the project&#039;s zip file: &quot;USBIRr.v1a.zip&quot;.  I think you will find it here and there on the web. I suggest getting it from multiple sources. Once you&#039;ve hit a match, consider what you have more likely to be the real thing.  However, as with everything found on the web, you should take care it is clean.]]></description>
		<content:encoded><![CDATA[<p>@Francirius<br />
Agreed, please re-post the project&#8217;s files.  However, in the mean time, Francirius, google for the project&#8217;s zip file: &#8220;USBIRr.v1a.zip&#8221;.  I think you will find it here and there on the web. I suggest getting it from multiple sources. Once you&#8217;ve hit a match, consider what you have more likely to be the real thing.  However, as with everything found on the web, you should take care it is clean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francirius</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-216578</link>
		<dc:creator><![CDATA[Francirius]]></dc:creator>
		<pubDate>Mon, 22 Nov 2010 18:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-216578</guid>
		<description><![CDATA[The code is missing! can you re-post it?]]></description>
		<content:encoded><![CDATA[<p>The code is missing! can you re-post it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: st2000</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-212751</link>
		<dc:creator><![CDATA[st2000]]></dc:creator>
		<pubDate>Mon, 15 Nov 2010 05:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-212751</guid>
		<description><![CDATA[@Jeff:
Go to Amazon and use &quot;usb to irda&quot;.  You will find a bunch of products ranging from in the $10s to several times that.  Not sure why the spread.

I would suggest not to build one: 1) Where you can find loads of IRASK parts, it is difficult to find IRDA parts. 2) Bluetooth appears to be replacing IRDA. 3) As with Bluetooth, IRDA has several protocols that require hardware and complex software to implement.]]></description>
		<content:encoded><![CDATA[<p>@Jeff:<br />
Go to Amazon and use &#8220;usb to irda&#8221;.  You will find a bunch of products ranging from in the $10s to several times that.  Not sure why the spread.</p>
<p>I would suggest not to build one: 1) Where you can find loads of IRASK parts, it is difficult to find IRDA parts. 2) Bluetooth appears to be replacing IRDA. 3) As with Bluetooth, IRDA has several protocols that require hardware and complex software to implement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-212659</link>
		<dc:creator><![CDATA[Jeff]]></dc:creator>
		<pubDate>Mon, 15 Nov 2010 01:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-212659</guid>
		<description><![CDATA[Thanks st2000 for the advise.
I have a laptop with no IrDA conn. I intend to build a serial IrDA to do printing thro&#039; another host PC with IrDA conn. Can you advice me on a suitable circuit for this project?
Thanks]]></description>
		<content:encoded><![CDATA[<p>Thanks st2000 for the advise.<br />
I have a laptop with no IrDA conn. I intend to build a serial IrDA to do printing thro&#8217; another host PC with IrDA conn. Can you advice me on a suitable circuit for this project?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: st2000</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-211435</link>
		<dc:creator><![CDATA[st2000]]></dc:creator>
		<pubDate>Fri, 12 Nov 2010 14:27:30 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-211435</guid>
		<description><![CDATA[Hi...

Does anyone know where the Eagle ZIP file is for this project?  The download from the Mahalo page comes up empty.  

I want to add some stuff and am just starting with Eagle.  Thought it would be better to start with something that works (&quot;smoke hasn&#039;t been let out yet :)&quot;).

-thanks]]></description>
		<content:encoded><![CDATA[<p>Hi&#8230;</p>
<p>Does anyone know where the Eagle ZIP file is for this project?  The download from the Mahalo page comes up empty.  </p>
<p>I want to add some stuff and am just starting with Eagle.  Thought it would be better to start with something that works (&#8220;smoke hasn&#8217;t been let out yet :)&#8221;).</p>
<p>-thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: st2000</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-211428</link>
		<dc:creator><![CDATA[st2000]]></dc:creator>
		<pubDate>Fri, 12 Nov 2010 14:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-211428</guid>
		<description><![CDATA[@Jeff:
IRDA is different from the many media center remote control protocol.  Most media remotes modulate a pulsing signal around 40KHz.  The way they do it is where you get all the different formats (like RC5). IRDA is more like a bunch of really quick pulses.  You will find IRDA in hand held devices like Printers, Palm Pilots and Phones.  It&#039;s quick enough to send lots of information like a picture or a document.  To do that with a media remote would take forever - if possible.  Also, where you can use a remote across the room, you can only go 1 maybe 2 meters using IRDA.  That commercial where two people exchange phone number from different train cars is a bunch of phoowie.]]></description>
		<content:encoded><![CDATA[<p>@Jeff:<br />
IRDA is different from the many media center remote control protocol.  Most media remotes modulate a pulsing signal around 40KHz.  The way they do it is where you get all the different formats (like RC5). IRDA is more like a bunch of really quick pulses.  You will find IRDA in hand held devices like Printers, Palm Pilots and Phones.  It&#8217;s quick enough to send lots of information like a picture or a document.  To do that with a media remote would take forever &#8211; if possible.  Also, where you can use a remote across the room, you can only go 1 maybe 2 meters using IRDA.  That commercial where two people exchange phone number from different train cars is a bunch of phoowie.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-209255</link>
		<dc:creator><![CDATA[Jeff]]></dc:creator>
		<pubDate>Mon, 08 Nov 2010 03:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-209255</guid>
		<description><![CDATA[I&#039;m searching for an IRDA device to operate my lazerjet printer (HP 6MP)with a built-in IR sensor. Is this suitable?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m searching for an IRDA device to operate my lazerjet printer (HP 6MP)with a built-in IR sensor. Is this suitable?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NmaN</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-203582</link>
		<dc:creator><![CDATA[NmaN]]></dc:creator>
		<pubDate>Wed, 27 Oct 2010 08:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-203582</guid>
		<description><![CDATA[Hi guys,

Look at this project. It is a Usb HID multiprotocol ir multimedia controller. It can decode various protocols: RC5, NEC, SIRC (Sony 12bit). No driver installation or pc software is required. You can use it to control Winamp, Windows Media Player and Microsoft Powerpoint. 

http://www.elektrotekno.com/about55331.html]]></description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>Look at this project. It is a Usb HID multiprotocol ir multimedia controller. It can decode various protocols: RC5, NEC, SIRC (Sony 12bit). No driver installation or pc software is required. You can use it to control Winamp, Windows Media Player and Microsoft Powerpoint. </p>
<p><a href="http://www.elektrotekno.com/about55331.html" rel="nofollow">http://www.elektrotekno.com/about55331.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: argento</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-195560</link>
		<dc:creator><![CDATA[argento]]></dc:creator>
		<pubDate>Tue, 12 Oct 2010 03:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-195560</guid>
		<description><![CDATA[@Siva:
humm okey thx i&#039;m testing now]]></description>
		<content:encoded><![CDATA[<p>@Siva:<br />
humm okey thx i&#8217;m testing now</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siva</title>
		<link>http://hackaday.com/2008/10/30/how-to-usb-remote-control-receiver/comment-page-2/#comment-193997</link>
		<dc:creator><![CDATA[Siva]]></dc:creator>
		<pubDate>Sat, 09 Oct 2010 16:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://hackadaycom.wordpress.com/?p=5239#comment-193997</guid>
		<description><![CDATA[@argento
The latest updated firmware                     (USBIRToy.firmware.v08.zip) of  USB infrared toy  works with this circuit, they have uploaded specific HEX code for hackaday circuit. Download the frimware from this link 
http://code.google.com/p/dangerous-prototypes-open-hardware/downloads/list]]></description>
		<content:encoded><![CDATA[<p>@argento<br />
The latest updated firmware                     (USBIRToy.firmware.v08.zip) of  USB infrared toy  works with this circuit, they have uploaded specific HEX code for hackaday circuit. Download the frimware from this link<br />
<a href="http://code.google.com/p/dangerous-prototypes-open-hardware/downloads/list" rel="nofollow">http://code.google.com/p/dangerous-prototypes-open-hardware/downloads/list</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

