-
Notifications
You must be signed in to change notification settings - Fork 889
Description
Hi @crankyoldgit . I hope you are doing well.
I have a Daikin AC unit which uses the remote ARC484A4. The model ARC484A4 corresponds to protocol DAIKIN (280 bits/35 bytes), and hence I am using the IRDaikinESP class to send the IR signal and it works when I try to turn ON the AC. However it does not work when I try to turn OFF the AC. I have currently stored the raw value for the Off command for the remote and using the sendRaw method in IRSend to make it work.
I managed to get the IR Dump data of my remote as well as the one generated by the library file. Below are the IR data captured via IRrecvDumpV3. I see a difference of 9 bytes between the code generated by library and the remote.
AC OFF
0x11DA2700C50010E711DA27004200005411DA270000382800A0000006600000C18000B9 (via Remote Control)
0x11DA2700C50000D711DA27004200005411DA27000038340030000006600000C00000D4 (library generated)
AC ON
0x11DA2700C50010E711DA27004200005411DA270000392800A0000006600000C18000BA (via Remote Control)
0x11DA2700C50000D711DA27004200005411DA27000039340030000006600000C00000D5 (library generated)
Is there any way I can make the AC OFF to work using the library.
Thanks in Advance