You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When receiving IR data in hex format it is formatted like this
{"Protocol":"NEC","Bits":32,"Data":"FF20DF"}
When sending the same string via irsend the Data is treated as decimal, you have to change the string to {"Protocol":"NEC","Bits":32,"Data":"0xFF20DF"}, then it works.
Suggestion: add "0x" in front of Data value when reported as hex value by IrReceived, so that receiving and sending are consistant. Thank you.
The text was updated successfully, but these errors were encountered:
When receiving IR data in hex format it is formatted like this
{"Protocol":"NEC","Bits":32,"Data":"FF20DF"}
When sending the same string via irsend the Data is treated as decimal, you have to change the string to {"Protocol":"NEC","Bits":32,"Data":"0xFF20DF"}, then it works.
Suggestion: add "0x" in front of Data value when reported as hex value by IrReceived, so that receiving and sending are consistant. Thank you.
The text was updated successfully, but these errors were encountered: