mirror of
https://github.com/home-assistant/core.git
synced 2025-05-14 02:49:15 +00:00
Use correct Ecobee fan constants (#34177)
This commit is contained in:
parent
5a9970e63c
commit
dbcc294d67
@ -556,7 +556,7 @@ class Thermostat(ClimateDevice):
|
|||||||
|
|
||||||
def set_fan_mode(self, fan_mode):
|
def set_fan_mode(self, fan_mode):
|
||||||
"""Set the fan mode. Valid values are "on" or "auto"."""
|
"""Set the fan mode. Valid values are "on" or "auto"."""
|
||||||
if fan_mode.lower() != STATE_ON and fan_mode.lower() != HVAC_MODE_AUTO:
|
if fan_mode.lower() not in (FAN_ON, FAN_AUTO):
|
||||||
error = "Invalid fan_mode value: Valid values are 'on' or 'auto'"
|
error = "Invalid fan_mode value: Valid values are 'on' or 'auto'"
|
||||||
_LOGGER.error(error)
|
_LOGGER.error(error)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user