Re: Review of IR receivers for Air Conditioners
Posted: Mon May 30, 2016 9:37 am
So from your message about the Gree AC looks like there is no possibility to make it work.
I am receiving the following string for the ON button and the decoded is on 32 bits but I've see that you are mentioning 35 bits.
I'll check to capture again using the ISR this time, may be I get something different. Sending the above rawData, AC is not reacting at all. I've validated my setup (ESP8266 - IR using this code https://myesp8266.blogspot.ro/2015/12/e ... ntrol.html) by sending ON/OFF on a Panasonic TV
and is working fine.
Still not clear for me it the Gree ( is similar to Hitachi ???) data need to be transmitted multiple times ( like Sony) or for a period of time ( like the Panasonic).
I am receiving the following string for the ON button and the decoded is on 32 bits but I've see that you are mentioning 35 bits.
Code: Select all
Encoding : NEC
Code : D0B0060A (32 bits)
Timing[73]:
+9050, -4450 + 750, -1600 + 750, -1600 + 750, - 550
+ 700, -1600 + 750, - 550 + 700, - 550 + 700, - 550
+ 700, - 550 + 700, -1600 + 750, - 550 + 700, -1600
+ 750, -1600 + 750, - 550 + 700, - 550 + 700, - 550
+ 700, - 550 + 700, - 550 + 700, - 550 + 700, - 550
+ 700, - 550 + 700, - 550 + 700, -1600 + 750, -1600
+ 750, - 550 + 700, - 550 + 700, - 550 + 700, - 550
+ 700, - 550 + 700, -1600 + 750, - 550 + 700, -1600
+ 750, - 550 + 700, - 550 + 700, -1600 + 750, - 550
+ 700
unsigned int rawData[73] = {9050,4450, 750,1600, 750,1600, 750,550, 700,1600, 750,550, 700,550, 700,550, 700,550, 700,1600, 750,550, 700,1600, 750,1600, 750,550, 700,550, 700,550, 700,550, 700,550, 700,550, 700,550, 700,550, 700,550, 700,1600, 750,1600, 750,550, 700,550, 700,550, 700,550, 700,550, 700,1600, 750,550, 700,1600, 750,550, 700,550, 700,1600, 750,550, 700}; // NEC D0B0060A
unsigned int data = 0xD0B0060A;
and is working fine.
Still not clear for me it the Gree ( is similar to Hitachi ???) data need to be transmitted multiple times ( like Sony) or for a period of time ( like the Panasonic).