Philip’s RC6 IR format differs from normal IR (infrared) by employing a toggle sequence in the code. The toggle flips back and forth with every button press of the remote control. For example, the following two IR codes are the first and second press of the same button on a remote control.
Sequence A
sendir,2:1,18,36000,1,1,96,31,16,15,16,15,16,31,16,31,48,31,16,15,16,15,16,
15,16,15,16,15,16,15,16,15,16,15,16,15,16,15,32,15,16,15,16,15,16,16,16,32,
16,15,16,15,16,15,32,31,16,15,16,15,16,15,16,15,16,15,16,15,16,15,32,31,16,715
Sequence B
sendir,2:1,19,36000,1,1,96,31,16,16,16,16,16,32,16,32,48,31,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,16,16,16,16,16,16,32,16,16,
16,16,16,16,16,16,32,32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,32,31,16,725
Note: the values shown in bold are reversed between the two sequences. This is referred to as the toggle bit.
In order to automate RC6 devices using control software, the software must have both codes (A and B) and flip back and forth between the two as the remote control does. A problem may arise in the beginning when the software does not know which of the two codes to start with (A or B). To avoid this issue, the software should send a benign A sequence twice before sending the actual IR codes. This will ensure the device is expecting a B sequence as the next code, and the software can start with the B sequence of the real command it wants to send. Most remotes have a button that is considered benign, such as the CLEAR button.
Example:
You want to change channels using your software. Using the remote, you would need to enter a three digit channel number and then press the ENTER button. Below are the commands that will need to be sent from software:
-
Send the sequence A version of the CLEAR button with a repeat count of two.
-
Send the sequence B version of the first numerical digit of the channel number.
-
Send the sequence A version of the second numerical digit.
-
Send the sequence B version of the third numerical digit.
-
Send the sequence A version of the ENTER button.
1 Comments