-
Notifications
You must be signed in to change notification settings - Fork 889
Description
Version/revision of the library used
2.7.16
Describe the bug
I would like to please request support for Fujitsu remote AR-REW4E - the AC Unit Model is ASYG09KETA-B
Spreadsheet and Remote Photo
Spreadsheet of code decoding https://drive.google.com/file/d/1fjsWo_svwjN5c7Q1KXlzSQetuaucmztj/view?usp=sharing
Non XLSX GSheet https://docs.google.com/spreadsheets/d/1KjFjIR5t2H42aRd-hv-SXi3-BNQVS5lQSXefCTy6r6c/edit?usp=sharing
Picture of Remote https://imgur.com/a/OtS5eFO
Decoding Information
LSB First decoding seems to be the way.
- Byte 0 = Checksum
- Byte 1 = 1st Nibble Low Outdoor Noise Mode. 2nd Nibble Set Time Command.
- Byte 2 = Minute (Time)
- Byte 3 = Day of Week Monday = 1, Sunday = 7
- Byte 4 = Hour (Time)
- Byte 5 = 1st Nibble Swing (0 = Off, 1 = On). 2nd Nibble Fan Speed (0 = Auto, 1 = High, 2 = Medium, 3 = Low, 4 = Quiet)
- Byte 6 = 1st Nibble Timer (Sleep Timer = 1, Off Timer = 2, On Timer = 3, On/Off Timer = 4). 2nd Nibble Mode (Auto = 0, Cool = 1, Dry = 2, Fan = 3, Heat = 4)
- Byte 7 = Temp (Power on add 1, Fahrenheit adds 2)
- Byte 8-12 = Static
- Byte 13 = Remote controller custom code (A=00 B=10 C=20 D=30)
- Byte 14-15 = Static
Checksum Calculation
To calculate the checksum, it is the sum of LSB Bytes 1 to 7. This sum is then subtracted from 207, which is then Modulo to 256.
=DEC2HEX(MOD(207-SUM(HEX2DEC(**BYTES 1 to 7**)),256),2)
Non State Buttons
There are a couple of buttons that do not send the state, and just send the button press, these are:
- Economy Button
- Set Louvre Button
- Powerful Button
- Power Off
These are covered on the "Normal Function Buttons" tab on the spreadsheet
If I can provide you with any more information, just let me know.