mirror of
https://github.com/geoffdavis/esphome-mitsubishiheatpump
synced 2024-08-30 18:12:13 +00:00
off by one branch
This commit is contained in:
parent
a36cb30a89
commit
bf9259ce0a
@ -246,9 +246,9 @@ void MitsubishiHeatPump::hpSettingsChanged() {
|
||||
this->mode = climate::CLIMATE_MODE_COOL;
|
||||
} else if (strcmp(currentSettings.mode, "FAN") == 0) {
|
||||
this->mode = climate::CLIMATE_MODE_FAN_ONLY;
|
||||
this->action = climate::CLIMATE_ACTION_FAN;
|
||||
} else if (strcmp(currentSettings.mode, "AUTO") == 0) {
|
||||
this->mode = climate::CLIMATE_MODE_AUTO;
|
||||
this->action = climate::CLIMATE_ACTION_FAN;
|
||||
} else {
|
||||
ESP_LOGW(
|
||||
TAG,
|
||||
|
Loading…
Reference in New Issue
Block a user