sendRC6(raw,numBits) works, but sendRC6(addr,cmd,numRepeats) doesn't work #1051
-
Using v3.9.0 of the library with Arduino Uno. If I send with this line (when number=0) The set top box responds correctly and after IrReceiver.decode() debug prints Fields of IrReceiver.decodedIRData ... If I send with this line (when number=0) The set top box does not respond and after IrReceiver.decode() debug prints Fields of IrReceiver.decodedIRData ... Can someone tell me what I am doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I improved the RC6 decoder and the printIRSendUsage() function to be more specific. |
Beta Was this translation helpful? Give feedback.
I improved the RC6 decoder and the printIRSendUsage() function to be more specific.
What you have is a no standard RC6 protocol, a protocol derived from RC6 using more bits. Therfore you can use the sendRC6(uint32_t...) function - now renamed to sendRC6Raw() - to send this non standard RC6 like protocol.