I ordered a remote/IR receiver from http://www.dealextreme.com/details.dx/sku.14380. The receiver acts as a USB mouse + keyboard but the remote is too cheap and it has too few buttons. What I want to do is send new commands to the receiver and see if the receiver supports more commands.
I recorded the remote IR commands via my sound card port attached to an IR chip and the remote seems to send IR codes that look like the Sony SIRC protocol with a 1 being high for 2t then low for 1t, and a 0 being high for 1t then low for 1t. t is about 600us. Here are the bit sequences I recorded for various buttons/commands:
Code: Select all
12345678901234567
0: 00011100000000000
1: 00010010000000000
2: 00110010000000000
3: 00001010000000000
4: 00011100000000000
5: 00111100000000000
6: 00000010000000000
7: 00010100000000000
8: 00110100000000000
9: 00001100000000000
backspace:00000110000000000
up: 00110010000000000
down: 00110100000000000
left: 00011100000000000
right: 00000010000000000
enter: 00111100000000000
tab: 00010010000000000
m_up: 00000000100000000
m_right: 00011000100000000
m_down: 00001000100000000
m_left: 00010000100000000
l_btn: 01101000000000000
r_btn: 01111000000000000
power: 01000010000000000
12345678901234567
I don't have a jp1 remote (or cable) but I don't want to buy one until I figure out if the receiver can handle more commands. I opened up the receiver and found it uses a Holtek HT82K95E chip (http://www.holtek.com.tw/english/docum/ ... 82k95x.htm) and an IR module. Quite simple.
If this receiver supports a full keyboard and mouse functionality then it could be a good remote for a HTPC. I'm running MythTV so a remote acting like a keyboard would work great. I just need to figure out if the receiver can take new commands. Hopefully by using a non-JP1 remote with similar commands I can see new ones are recognized.
Any pointers would be greatly appreciated!
Thanks.