Strange IR signals received from Fujitsu AC ASTG18K and ASTG09K #1701
-
Hey all - I am seriously out of my depth with these two fujitsu models, it seems..! If anyone can help me with this, you will be doing a massive favour to my sanity. The FUJITSU_AC library included with IRremoteESP8266 recognises the FUJITSU_AC protocol and commands from my remotes.. but only the 'Turn Off' command works. It is the same if I send back the commands I capture via the IR-enabled tasmota firmware on my Wemos D1 mini - only 'Turn Off' commands work, the rest get zero response from the Aircons. Some weirdness I am hoping someone can help me understand:
'Data' values in the 'Turn On' Commands, over the space of about 100 seconds:
Here is a typical payload I get from capturing a device; the rawdata appears to be unique over time:
|
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 25 replies
-
Ah - regarding the odd-looking rawdata, I found a Tasmota doc on the format - it is just compression for large payloads, with a link to a handy tool for decompression. All my other issues stand, though, of course! |
Beta Was this translation helpful? Give feedback.
-
The bits that are changing are a time value. As far as we've reverse engineered and has been reported, the bits that are changing are the on timer time value. Try disabling the timers on the remote, and see if the code value keeps changing.
The off command is a fixed special command common to almost all models of Fujitsu ACs. Line 130 in 082bf30
It is incredibly hard for us to take reports from 3rd party software and try and workout what is going on. i.e. There is a whole other layer of interfaces, software, and data formats we are not responsible for, or familiar with. You need to report Tasmota problems with Tasmota, even if it is using part of there software which uses this library. If you think it is a problem with our library, we need to have data collected using our tools e.g. |
Beta Was this translation helpful? Give feedback.
-
I have raised a ticket with Tasmota, I will update here if that turns up anything interesting. This is probably of no interest to anyone :) but I will stick it here anyway:
|
Beta Was this translation helpful? Give feedback.
-
For tasmota, try changing one of the other supported "Models" from say Sorry, I'm not about to hack Tasmota's code for you, so you'll have to find it on your own. |
Beta Was this translation helpful? Give feedback.
-
Awesome thank you! The only mod to
I think it is worth noting - I did try changing a few other settings temporarily within I tried various settings within /aircon, but typically used those below. I did cycle through all 6 models.
|
Beta Was this translation helpful? Give feedback.
-
FYI, the changes mentioned above have now been included in the new v2.8.2 release of the library. |
Beta Was this translation helpful? Give feedback.
The bits that are changing are a time value. As far as we've reverse engineered and has been reported, the bits that are changing are the on timer time value. Try disabling the timers on the remote, and see if the code value keeps changing.
The off command is a fixed special command common to almost all models of Fujitsu ACs.
To control the device, you should be using model "6" if that is what you're…