Skip to content
Snippets Groups Projects
Commit 09de6d58 authored by Otto Winter's avatar Otto Winter Committed by Paulus Schoutsen
Browse files

Fix ESPHome climate preset mode refactor (#27637)

parent de796354
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ from homeassistant.components.climate.const import ( ...@@ -17,6 +17,7 @@ from homeassistant.components.climate.const import (
SUPPORT_TARGET_TEMPERATURE_RANGE, SUPPORT_TARGET_TEMPERATURE_RANGE,
PRESET_AWAY, PRESET_AWAY,
HVAC_MODE_OFF, HVAC_MODE_OFF,
PRESET_HOME,
) )
from homeassistant.const import ( from homeassistant.const import (
ATTR_TEMPERATURE, ATTR_TEMPERATURE,
...@@ -96,7 +97,7 @@ class EsphomeClimateDevice(EsphomeEntity, ClimateDevice): ...@@ -96,7 +97,7 @@ class EsphomeClimateDevice(EsphomeEntity, ClimateDevice):
@property @property
def preset_modes(self): def preset_modes(self):
"""Return preset modes.""" """Return preset modes."""
return [PRESET_AWAY] if self._static_info.supports_away else [] return [PRESET_AWAY, PRESET_HOME] if self._static_info.supports_away else []
@property @property
def target_temperature_step(self) -> float: def target_temperature_step(self) -> float:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment