gysmo38 / mitsubishi2MQTT

Mitsubishi to MQTT with ESP8266 module
GNU Lesser General Public License v2.1
390 stars 139 forks source link

fan settings Quiet and fan 1 #98

Closed mamrai1 closed 3 years ago

mamrai1 commented 3 years ago
const byte FAN[6]              = {0x00,  0x01,   0x02, 0x03, 0x05, 0x06};
const char* FAN_MAP[6]         = {"AUTO", "QUIET", "1", "2", "3", "4"};

it seems that 0x01 and 0x02 reflect the same fan speed which is quiet... the ac returns always fan speed 1 in HA but auto in web interface when selecting quiet. i changed quiet to 0x02 and fan 1 to 0x01 the ac returns always fan speed quiet in HA but auto in web interface when selecting again quiet.

Please ignore.. Problem is with heatpump library and byte for quiet fan mode (0x01) which is wrong..

mamrai1 commented 3 years ago

1) web intreface 'error' is due to line ~194 in html_pages.h: changed from: value='QUIET' _FANQUIET> to value='QUIET' _FANQ>

2)Also there is an 'AUTO' option in widevane settings selection under control page which is not supported by heatpump library.

3)' quiet' fan mode has wrong byte mapping in heatpump library. (tested only on msz-ge35va and msz-ge71ga)

mamrai1 commented 3 years ago

opened a PR