-
Notifications
You must be signed in to change notification settings - Fork 49
Description
Hello,
I'm trying to use irplus to speak to an arduino to get some things automated. The library I'm using is: https://www.arduino.cc/reference/en/libraries/irremote/
I'm having problems dublicating IR codes I record via arduino from an cheap chinese led strip with IR remote.
When I press the button on my remote, this code is recieved via the arduino:
Protocol=NEC Address=0xEF00 Command=0x3 Raw-Data=0xFC03EF00 32 bits LSB first
When I enter the code 0xFC03EF00 into irplus with WINLIRC_NEC1, the arduino recieves:
Protocol=NEC Address=0x3F Command=0xF7 Parity fail Raw-Data=0xF7C03F 32 bits LSB first
There seems to be some switching around with the first and last part of the code.
If I enter the code in two 4 byte blocks of 0xFC03 0xEF00, I get:
Protocol=NEC Address=0x3F Command=0xF7 Parity fail Raw-Data=0xF7C03F 32 bits LSB first
I think I'm missing some formating or standard that I cannot find. Can somebody guide me in the right direction?