Skip to content

Commit

Permalink
fix: climate deprecated attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dim145 committed Jan 4, 2025
1 parent d86e1da commit f46b5d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions custom_components/localtuya/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
HVACMode.AUTO: "Auto",
},
"MANUAL/AUTO": {
HVAC_MODE_HEAT: "MANUAL",
HVAC_MODE_AUTO: "AUTO",
HVACMode.HEAT: "MANUAL",
HVACMode.AUTO: "AUTO",
},
"Manual/Program": {
HVACMode.HEAT: "Manual",
Expand Down Expand Up @@ -117,8 +117,8 @@
HVACAction.IDLE: "Warming",
},
"heating/warming": {
CURRENT_HVAC_HEAT: "heating",
CURRENT_HVAC_IDLE: "warming",
HVACAction.HEATING: "heating",
HVACAction.IDLE: "warming",
},
}
HVAC_FAN_MODE_SETS = {
Expand Down

0 comments on commit f46b5d2

Please sign in to comment.