Skip to content

Commit

Permalink
Merge pull request #103 from albertoxamin/path-1
Browse files Browse the repository at this point in the history
Fix hvacaction always reported as COOLING
  • Loading branch information
nbogojevic authored Feb 22, 2023
2 parents f3efc9b + 076d8c2 commit 26174b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/midea_dehumidifier_lan/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@
HVACMode.OFF: HVACAction.OFF,
HVACMode.AUTO: None,
HVACMode.COOL: HVACAction.COOLING,
HVACMode.DRY: HVACAction.COOLING,
HVACMode.HEAT: HVACAction.COOLING,
HVACMode.FAN_ONLY: HVACAction.COOLING,
HVACMode.DRY: HVACAction.DRYING,
HVACMode.HEAT: HVACAction.HEATING,
HVACMode.FAN_ONLY: HVACAction.FAN,
}


Expand Down

0 comments on commit 26174b8

Please sign in to comment.