Difference between revisions of "NEC IR Remote Control Interface with 8051"
Line 28: | Line 28: | ||
A total of 67.5ms is required to transmit a message frame. It needs 27ms to transmit the 16 bits of address (address + inverse) and the 16 bits of command (command + inverse). | A total of 67.5ms is required to transmit a message frame. It needs 27ms to transmit the 16 bits of address (address + inverse) and the 16 bits of command (command + inverse). | ||
+ | [[File:NecIrRemote 0.png]] | ||
+ | |||
=IR Key Codes= | =IR Key Codes= | ||
Line 78: | Line 80: | ||
|} | |} | ||
− | |||
− | |||
=Downloads= | =Downloads= | ||
[[File:Schematic 8051 Interfacing Zigbee.JPG|680px]] | [[File:Schematic 8051 Interfacing Zigbee.JPG|680px]] | ||
<span style="color:red">'''Code and Explanation will be updated soon..'''</span> | <span style="color:red">'''Code and Explanation will be updated soon..'''</span> |
Revision as of 18:35, 29 July 2016
IR Remote Controllers and receivers follow standard protocols for sending and receiving the data. Some of the standard protocols are NEC , JVC , SIRC (Sony Infrared Remote Control) etc. We will be discussing only the NEC protocol. After understanding the frame format of IR Remote, We will be interfacing a IR receiver with 8051 and decode the key pressed.
NEC Protocol
NEC IR protocol encodes the keys using a 32bit frame format as shown below.
NEC Frame Format | |||
Address | Complement of Address | Command | Complement of Command |
LSB-MSB(0-7) | LSB-MSB(8-15) | LSB-MSB(16-23) | LSB-MSB(24-31) |
Each bit is transmitted using the pulse distance as shown in the image.
Logical '0': A 562.5µs pulse burst followed by a 562.5µs space, with a total transmit time of 1.125ms
Logical '0': A 562.5µs pulse burst followed by a 1.6875ms space, with a total transmit time of 2.25ms
When a key is pressed on the remote controller, the message transmitted consists of the following, in order:
- A 9ms leading pulse burst (16 times the pulse burst length used for a logical data bit)
- A 4.5ms space
- The 8-bit address for the receiving device
- The 8-bit logical inverse of the address
- The 8-bit command
- The 8-bit logical inverse of the command
- A final 562.5µs pulse burst to signify the end of message transmission.
The four bytes of data bits are each sent least significant bit first. Below image illustrates the format of an NEC IR transmission frame, for an address of 00h (00000000b) and a command of ADh (10101101b).
A total of 67.5ms is required to transmit a message frame. It needs 27ms to transmit the 16 bits of address (address + inverse) and the 16 bits of command (command + inverse).
IR Key Codes
Below table gives the complete list of Codes for NEC IR Remote.
Key | Encoded Value |
CH- | 0xFFA25D |
CH | 0xFF629D |
CH+ | 0xFFE21D |
PREV | 0xFF22DD |
NEXT | 0xFF02FD |
PLAY/PAUSE | 0xFFC23D |
VOL- | 0xFFE01F |
VOL+ | 0xFFA857 |
EQ | 0xFF906F |
0 | 0xFF6897 |
100+ | 0xFF9867 |
200+ | 0xFFB04F |
1 | 0xFF30CF |
2 | 0xFF18E7 |
3 | 0xFF7A85 |
4 | 0xFF10EF |
5 | 0xFF38C7 |
6 | 0xFF5AA5 |
7 | 0xFF42BD |
8 | 0xFF4AB5 |
9 | 0xFF52AD |