Dear,
I'm having some trouble to get a connection to an Electrolux air conditioner, model pi09f. I am using the IRremote's library and i can connect several devices, except the air conditioner.
Using the receive mode from the library I get the following codes by pressing the power button in the remote control for 2 times (I believe one code is for turning on and the other for turning off):
Unknown encoding: 8E1663EA (32-bit)
Raw (100) -676 4500 -4150 700 -1450 700 -400 650 -1500 650 -1500 650 -450 650 -400 650 -1500 700 -400 650 -450 650 -1500 650 -450 650 -450 600 -1500 650 -1500 650 -450 650 -1500 650 -450 650 -450 600 -1550 600 -1550 600 -1550 600 -1550 600 -1550 650 -1500 650 -1500 650 -1550 600 -450 600 -500 600 -500 600 -450 600 -500 600 -500 600 -450 600 -1550 600 -1550 650 -450 600 -500 600 -500 600 -450 600 -500 600 -1550 600 -500 600 -450 600 -1550 600 -1550 650 -1550 600 - 1550 600 -1550 600
FA36E9A0
Unknown encoding: FA36E9A0 (32-bit)
Raw (100): 32244 4500 -4150 700 -1450 700 -400 650 -1500 650 -1500 650 -450 650 -450 650 -1450 700 -450 600 -450 650 -1500 650 -450 650 -450 600 -1500 650 - 600 -1500 1550 650 -450 650 -500 600 -1500 650 -1500 650 -1500 650 -1500 650 -500 600 -1500 650 -1500 650 -1500 650 -500 600 -500 600 -450 600 -500 600 -1500 650 -500 600 -450 600 -1550 600 -1550 600 -1550 600 -500 600 -500 600 -500 550 -500 600 -500 600 -500 550 -500 600 -500 600 -1500 650 -1500 650 -1550 600 -1550 600 600 -1550
8E1663EA
I removed the commas, the first group of numbers and the spaces between those groups from the original code.
4500,4150,700,1450,700,400,650,1500,650,1500,650,450,650,400,650,1500,700,400,650,450,650,1500,650,450,650,450,600,1500,650,1500,650,450,650,1500,650,450,650,450,600,1550,600,1550,600,1550,600,1550,600,1550,650,1500,650,1500,650,1550,600,450,600,500,600,500,600,450,600,500,600,500,600,450,600,1550,600,1550,650,450,600,500,600,500,600,450,600,500,600,1550,600,500,600,450,600,1550,600,1550,650,1550,600,1550,600,1550,600
4500,4150,700,1450,700,400,650,1500,650,1500,650,450,650,450,650,1450,700,450,600,450,650,1500,650,450,650,450,600,1500,650,1550,650,450,600,1500,650,500,600,1500,650,1500,650,1500,650,1500,650,500,600,1500,650,1500,650,1500,650,500,600,500,600,450,600,500,600,1500,650,500,600,450,600,1550,600,1550,600,1550,600,500,600,500,600,500,550,500,600,500,600,500,550,500,600,500,600,1500,650,1500,650,1550,600,1550,600,1550,600
I used the code as below:
unsigned int S_pwr3[100]={4500,4150,700,1450,700,400,650,1500,650,1500,650,450,650,400,650,1500,700,400,650,450,650,1500,650,450,650,450,600,1500,650,1500,650,450,650,1500,650,450,650,450,600,1550,600,1550,600,1550,600,1550,600,1550,650,1500,650,1500,650,1550,600,450,600,500,600,500,600,450,600,500,600,500,600,450,600,1550,600,1550,650,450,600,500,600,500,600,450,600,500,600,1550,600,500,600,450,600,1550,600,1550,650,1550,600,1550,600,1550,600};
unsigned int S_pwr4[100]={4500,4150,700,1450,700,400,650,1500,650,1500,650,450,650,450,650,1450,700,450,600,450,650,1500,650,450,650,450,600,1500,650,1550,650,450,600,1500,650,500,600,1500,650,1500,650,1500,650,1500,650,500,600,1500,650,1500,650,1500,650,500,600,500,600,450,600,500,600,1500,650,500,600,450,600,1550,600,1550,600,1550,600,500,600,500,600,500,550,500,600,500,600,500,550,500,600,500,600,1500,650,1500,650,1550,600,1550,600,1550,600};
irsend.sendRaw (S_pwr3, 100, 38);
delay (10000);
irsend.sendRaw (S_pwr4, 100, 38);
also tried:
irsend.sendRaw (S_pwr3, 100, 36);
delay (10000);
irsend.sendRaw (S_pwr4, 100, 36);
I have searched in Arduino's forum but i found nothing.
Can someone help me?