Hi,
i have an IR ac remote and want to decode its button in hex.
In receiver side i use ESP8266(using arduino library "IRremoteESP8266" and Ex. IRreceiveDumpv2)
when i press the button i got,
Protocol : UNKNOWN
Code : 0xB2BFD0 (34 Bits)
uint16_t rawData[67] ={4406, 4308, 558, 1566, 556, 524, 578, 1544, 554, 1568, 566, 514, 578, 500, 578, 1542, 556, 526, 578, 500, 578, 1542, 556, 524, 576, 500, 578, 1542, 556, 1566, 556, 526, 576, 1544, 556, 1568, 556, 524, 574, 1546, 556, 1566, 556, 1566, 556, 1566, 556, 1568, 556, 1566, 556, 526, 554, 1566, 556, 524, 554, 526, 552, 526, 554, 524, 554, 524, 554, 524, 554, 1566, 556, 1566, 556, 524, 554, 1566, 556, 526, 552, 526, 554, 524, 554, 524, 554, 524, 552, 526, 554, 1566, 556, 524, 554, 1566, 556, 1568, 554, 1568, 556, 1566, 556, 5194, 4402, 4310, 556, 1568, 556, 526, 552, 1568, 556, 1566, 556, 524, 554, 526, 552, 1568, 554, 526, 554, 524, 554, 1568, 554, 526, 554, 526, 552, 1568, {556, 1566, 556, 524, 554, 1566, 556, 1568, 554, 526, 554, 1568, 554, 1568, 556, 1568, 554, 1568, 554, 1568, 556, 1568, 554, 526, 552, 1566, 556, 524, 552, 526, 552, 526, 554, 524, 554, 524, 554, 526, 552, 1568, 556, 1566, 556, 526, 552, 1568, 556, 524, 554, 526, 552, 526, 554, 524, 552, 526, 554, 524, 554, 1566, 556, 526, 552, 1568, 554, 1568, 554, 1568, 554, 1568, 556};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
In transmitter side i use IRsendDemo:
when i transmit the above given Rawdata it works fine, it shows similar raw data & hex code in arduino terminal.
but when i transmit the above hex code it shows the exact hex code but this time the raw data is not same, and my ac is not turned on or doing any functinality because the rawdata is not same.
Can anyone explain why its not happening??
because i many tutorial they did the same and get the same results.