mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 18:27:09 +00:00
Add Tado water_heater (#30095)
* Add Tado water_heater * Don't use climate CONSTS * Fix logging text * Add changes for multiple bridge support * Address remarks * should_poll must be False * Remove additional async_schedule_update_ha_state() * Not for climate
This commit is contained in:
parent
1609e33030
commit
b8f9ff76b3
@ -20,7 +20,7 @@ DOMAIN = "tado"
|
|||||||
|
|
||||||
SIGNAL_TADO_UPDATE_RECEIVED = "tado_update_received_{}_{}"
|
SIGNAL_TADO_UPDATE_RECEIVED = "tado_update_received_{}_{}"
|
||||||
|
|
||||||
TADO_COMPONENTS = ["sensor", "climate"]
|
TADO_COMPONENTS = ["sensor", "climate", "water_heater"]
|
||||||
|
|
||||||
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=10)
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=10)
|
||||||
SCAN_INTERVAL = timedelta(seconds=15)
|
SCAN_INTERVAL = timedelta(seconds=15)
|
||||||
|
@ -25,13 +25,16 @@ from homeassistant.const import ATTR_TEMPERATURE, PRECISION_TENTHS, TEMP_CELSIUS
|
|||||||
from homeassistant.core import callback
|
from homeassistant.core import callback
|
||||||
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
||||||
|
|
||||||
from . import DATA, DOMAIN, SIGNAL_TADO_UPDATE_RECEIVED
|
from . import DOMAIN, SIGNAL_TADO_UPDATE_RECEIVED
|
||||||
from .const import (
|
from .const import (
|
||||||
CONST_MODE_OFF,
|
CONST_MODE_OFF,
|
||||||
CONST_MODE_SMART_SCHEDULE,
|
CONST_MODE_SMART_SCHEDULE,
|
||||||
CONST_OVERLAY_MANUAL,
|
CONST_OVERLAY_MANUAL,
|
||||||
CONST_OVERLAY_TADO_MODE,
|
CONST_OVERLAY_TADO_MODE,
|
||||||
|
CONST_OVERLAY_TIMER,
|
||||||
|
DATA,
|
||||||
TYPE_AIR_CONDITIONING,
|
TYPE_AIR_CONDITIONING,
|
||||||
|
TYPE_HEATING,
|
||||||
)
|
)
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
@ -39,25 +42,25 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
FAN_MAP_TADO = {"HIGH": FAN_HIGH, "MIDDLE": FAN_MIDDLE, "LOW": FAN_LOW}
|
FAN_MAP_TADO = {"HIGH": FAN_HIGH, "MIDDLE": FAN_MIDDLE, "LOW": FAN_LOW}
|
||||||
|
|
||||||
HVAC_MAP_TADO_HEAT = {
|
HVAC_MAP_TADO_HEAT = {
|
||||||
"MANUAL": HVAC_MODE_HEAT,
|
CONST_OVERLAY_MANUAL: HVAC_MODE_HEAT,
|
||||||
"TIMER": HVAC_MODE_HEAT,
|
CONST_OVERLAY_TIMER: HVAC_MODE_HEAT,
|
||||||
"TADO_MODE": HVAC_MODE_HEAT,
|
CONST_OVERLAY_TADO_MODE: HVAC_MODE_HEAT,
|
||||||
"SMART_SCHEDULE": HVAC_MODE_AUTO,
|
CONST_MODE_SMART_SCHEDULE: HVAC_MODE_AUTO,
|
||||||
"OFF": HVAC_MODE_OFF,
|
CONST_MODE_OFF: HVAC_MODE_OFF,
|
||||||
}
|
}
|
||||||
HVAC_MAP_TADO_COOL = {
|
HVAC_MAP_TADO_COOL = {
|
||||||
"MANUAL": HVAC_MODE_COOL,
|
CONST_OVERLAY_MANUAL: HVAC_MODE_COOL,
|
||||||
"TIMER": HVAC_MODE_COOL,
|
CONST_OVERLAY_TIMER: HVAC_MODE_COOL,
|
||||||
"TADO_MODE": HVAC_MODE_COOL,
|
CONST_OVERLAY_TADO_MODE: HVAC_MODE_COOL,
|
||||||
"SMART_SCHEDULE": HVAC_MODE_AUTO,
|
CONST_MODE_SMART_SCHEDULE: HVAC_MODE_AUTO,
|
||||||
"OFF": HVAC_MODE_OFF,
|
CONST_MODE_OFF: HVAC_MODE_OFF,
|
||||||
}
|
}
|
||||||
HVAC_MAP_TADO_HEAT_COOL = {
|
HVAC_MAP_TADO_HEAT_COOL = {
|
||||||
"MANUAL": HVAC_MODE_HEAT_COOL,
|
CONST_OVERLAY_MANUAL: HVAC_MODE_HEAT_COOL,
|
||||||
"TIMER": HVAC_MODE_HEAT_COOL,
|
CONST_OVERLAY_TIMER: HVAC_MODE_HEAT_COOL,
|
||||||
"TADO_MODE": HVAC_MODE_HEAT_COOL,
|
CONST_OVERLAY_TADO_MODE: HVAC_MODE_HEAT_COOL,
|
||||||
"SMART_SCHEDULE": HVAC_MODE_AUTO,
|
CONST_MODE_SMART_SCHEDULE: HVAC_MODE_AUTO,
|
||||||
"OFF": HVAC_MODE_OFF,
|
CONST_MODE_OFF: HVAC_MODE_OFF,
|
||||||
}
|
}
|
||||||
|
|
||||||
SUPPORT_FLAGS = SUPPORT_TARGET_TEMPERATURE | SUPPORT_PRESET_MODE
|
SUPPORT_FLAGS = SUPPORT_TARGET_TEMPERATURE | SUPPORT_PRESET_MODE
|
||||||
@ -70,14 +73,18 @@ SUPPORT_PRESET = [PRESET_AWAY, PRESET_HOME]
|
|||||||
|
|
||||||
def setup_platform(hass, config, add_entities, discovery_info=None):
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||||
"""Set up the Tado climate platform."""
|
"""Set up the Tado climate platform."""
|
||||||
|
if discovery_info is None:
|
||||||
|
return
|
||||||
|
|
||||||
api_list = hass.data[DOMAIN][DATA]
|
api_list = hass.data[DOMAIN][DATA]
|
||||||
entities = []
|
entities = []
|
||||||
|
|
||||||
for tado in api_list:
|
for tado in api_list:
|
||||||
for zone in tado.zones:
|
for zone in tado.zones:
|
||||||
entity = create_climate_entity(tado, zone["name"], zone["id"])
|
if zone["type"] in [TYPE_HEATING, TYPE_AIR_CONDITIONING]:
|
||||||
if entity:
|
entity = create_climate_entity(tado, zone["name"], zone["id"])
|
||||||
entities.append(entity)
|
if entity:
|
||||||
|
entities.append(entity)
|
||||||
|
|
||||||
if entities:
|
if entities:
|
||||||
add_entities(entities, True)
|
add_entities(entities, True)
|
||||||
@ -154,11 +161,9 @@ class TadoClimate(ClimateDevice):
|
|||||||
self._target_temp = None
|
self._target_temp = None
|
||||||
|
|
||||||
if tado.fallback:
|
if tado.fallback:
|
||||||
_LOGGER.debug("Default overlay is set to TADO MODE")
|
|
||||||
# Fallback to Smart Schedule at next Schedule switch
|
# Fallback to Smart Schedule at next Schedule switch
|
||||||
self._default_overlay = CONST_OVERLAY_TADO_MODE
|
self._default_overlay = CONST_OVERLAY_TADO_MODE
|
||||||
else:
|
else:
|
||||||
_LOGGER.debug("Default overlay is set to MANUAL MODE")
|
|
||||||
# Don't fallback to Smart Schedule, but keep in manual mode
|
# Don't fallback to Smart Schedule, but keep in manual mode
|
||||||
self._default_overlay = CONST_OVERLAY_MANUAL
|
self._default_overlay = CONST_OVERLAY_MANUAL
|
||||||
|
|
||||||
@ -354,11 +359,7 @@ class TadoClimate(ClimateDevice):
|
|||||||
def update(self):
|
def update(self):
|
||||||
"""Handle update callbacks."""
|
"""Handle update callbacks."""
|
||||||
_LOGGER.debug("Updating climate platform for zone %d", self.zone_id)
|
_LOGGER.debug("Updating climate platform for zone %d", self.zone_id)
|
||||||
try:
|
data = self._tado.data["zone"][self.zone_id]
|
||||||
data = self._tado.data["zone"][self.zone_id]
|
|
||||||
except KeyError:
|
|
||||||
_LOGGER.debug("No data")
|
|
||||||
return
|
|
||||||
|
|
||||||
if "sensorDataPoints" in data:
|
if "sensorDataPoints" in data:
|
||||||
sensor_data = data["sensorDataPoints"]
|
sensor_data = data["sensorDataPoints"]
|
||||||
@ -371,13 +372,13 @@ class TadoClimate(ClimateDevice):
|
|||||||
humidity = float(sensor_data["humidity"]["percentage"])
|
humidity = float(sensor_data["humidity"]["percentage"])
|
||||||
self._cur_humidity = humidity
|
self._cur_humidity = humidity
|
||||||
|
|
||||||
# temperature setting will not exist when device is off
|
# temperature setting will not exist when device is off
|
||||||
if (
|
if (
|
||||||
"temperature" in data["setting"]
|
"temperature" in data["setting"]
|
||||||
and data["setting"]["temperature"] is not None
|
and data["setting"]["temperature"] is not None
|
||||||
):
|
):
|
||||||
setting = float(data["setting"]["temperature"]["celsius"])
|
setting = float(data["setting"]["temperature"]["celsius"])
|
||||||
self._target_temp = setting
|
self._target_temp = setting
|
||||||
|
|
||||||
if "tadoMode" in data:
|
if "tadoMode" in data:
|
||||||
mode = data["tadoMode"]
|
mode = data["tadoMode"]
|
||||||
|
@ -2,7 +2,11 @@
|
|||||||
"domain": "tado",
|
"domain": "tado",
|
||||||
"name": "Tado",
|
"name": "Tado",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/tado",
|
"documentation": "https://www.home-assistant.io/integrations/tado",
|
||||||
"requirements": ["python-tado==0.2.9"],
|
"requirements": [
|
||||||
|
"python-tado==0.2.9"
|
||||||
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": ["@michaelarnauts"]
|
"codeowners": [
|
||||||
|
"@michaelarnauts"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
302
homeassistant/components/tado/water_heater.py
Normal file
302
homeassistant/components/tado/water_heater.py
Normal file
@ -0,0 +1,302 @@
|
|||||||
|
"""Support for Tado hot water zones."""
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from homeassistant.components.water_heater import (
|
||||||
|
SUPPORT_OPERATION_MODE,
|
||||||
|
SUPPORT_TARGET_TEMPERATURE,
|
||||||
|
WaterHeaterDevice,
|
||||||
|
)
|
||||||
|
from homeassistant.const import ATTR_TEMPERATURE, TEMP_CELSIUS
|
||||||
|
from homeassistant.core import callback
|
||||||
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
||||||
|
|
||||||
|
from . import DOMAIN, SIGNAL_TADO_UPDATE_RECEIVED
|
||||||
|
from .const import (
|
||||||
|
CONST_MODE_OFF,
|
||||||
|
CONST_MODE_SMART_SCHEDULE,
|
||||||
|
CONST_OVERLAY_MANUAL,
|
||||||
|
CONST_OVERLAY_TADO_MODE,
|
||||||
|
CONST_OVERLAY_TIMER,
|
||||||
|
DATA,
|
||||||
|
TYPE_HOT_WATER,
|
||||||
|
)
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
MODE_AUTO = "auto"
|
||||||
|
MODE_HEAT = "heat"
|
||||||
|
MODE_OFF = "off"
|
||||||
|
|
||||||
|
OPERATION_MODES = [MODE_AUTO, MODE_HEAT, MODE_OFF]
|
||||||
|
|
||||||
|
WATER_HEATER_MAP_TADO = {
|
||||||
|
CONST_OVERLAY_MANUAL: MODE_HEAT,
|
||||||
|
CONST_OVERLAY_TIMER: MODE_HEAT,
|
||||||
|
CONST_OVERLAY_TADO_MODE: MODE_HEAT,
|
||||||
|
CONST_MODE_SMART_SCHEDULE: MODE_AUTO,
|
||||||
|
CONST_MODE_OFF: MODE_OFF,
|
||||||
|
}
|
||||||
|
|
||||||
|
SUPPORT_FLAGS_HEATER = SUPPORT_OPERATION_MODE
|
||||||
|
|
||||||
|
|
||||||
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||||
|
"""Set up the Tado water heater platform."""
|
||||||
|
if discovery_info is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
api_list = hass.data[DOMAIN][DATA]
|
||||||
|
entities = []
|
||||||
|
|
||||||
|
for tado in api_list:
|
||||||
|
for zone in tado.zones:
|
||||||
|
if zone["type"] in [TYPE_HOT_WATER]:
|
||||||
|
entity = create_water_heater_entity(tado, zone["name"], zone["id"])
|
||||||
|
entities.append(entity)
|
||||||
|
|
||||||
|
if entities:
|
||||||
|
add_entities(entities, True)
|
||||||
|
|
||||||
|
|
||||||
|
def create_water_heater_entity(tado, name: str, zone_id: int):
|
||||||
|
"""Create a Tado water heater device."""
|
||||||
|
capabilities = tado.get_capabilities(zone_id)
|
||||||
|
supports_temperature_control = capabilities["canSetTemperature"]
|
||||||
|
|
||||||
|
if supports_temperature_control and "temperatures" in capabilities:
|
||||||
|
temperatures = capabilities["temperatures"]
|
||||||
|
min_temp = float(temperatures["celsius"]["min"])
|
||||||
|
max_temp = float(temperatures["celsius"]["max"])
|
||||||
|
else:
|
||||||
|
min_temp = None
|
||||||
|
max_temp = None
|
||||||
|
|
||||||
|
entity = TadoWaterHeater(
|
||||||
|
tado, name, zone_id, supports_temperature_control, min_temp, max_temp
|
||||||
|
)
|
||||||
|
|
||||||
|
return entity
|
||||||
|
|
||||||
|
|
||||||
|
class TadoWaterHeater(WaterHeaterDevice):
|
||||||
|
"""Representation of a Tado water heater."""
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
tado,
|
||||||
|
zone_name,
|
||||||
|
zone_id,
|
||||||
|
supports_temperature_control,
|
||||||
|
min_temp,
|
||||||
|
max_temp,
|
||||||
|
):
|
||||||
|
"""Initialize of Tado water heater entity."""
|
||||||
|
self._tado = tado
|
||||||
|
|
||||||
|
self.zone_name = zone_name
|
||||||
|
self.zone_id = zone_id
|
||||||
|
self._unique_id = f"{zone_id} {tado.device_id}"
|
||||||
|
|
||||||
|
self._device_is_active = False
|
||||||
|
self._is_away = False
|
||||||
|
|
||||||
|
self._supports_temperature_control = supports_temperature_control
|
||||||
|
self._min_temperature = min_temp
|
||||||
|
self._max_temperature = max_temp
|
||||||
|
|
||||||
|
self._target_temp = None
|
||||||
|
|
||||||
|
self._supported_features = SUPPORT_FLAGS_HEATER
|
||||||
|
if self._supports_temperature_control:
|
||||||
|
self._supported_features |= SUPPORT_TARGET_TEMPERATURE
|
||||||
|
|
||||||
|
if tado.fallback:
|
||||||
|
# Fallback to Smart Schedule at next Schedule switch
|
||||||
|
self._default_overlay = CONST_OVERLAY_TADO_MODE
|
||||||
|
else:
|
||||||
|
# Don't fallback to Smart Schedule, but keep in manual mode
|
||||||
|
self._default_overlay = CONST_OVERLAY_MANUAL
|
||||||
|
|
||||||
|
self._current_operation = CONST_MODE_SMART_SCHEDULE
|
||||||
|
self._overlay_mode = CONST_MODE_SMART_SCHEDULE
|
||||||
|
|
||||||
|
async def async_added_to_hass(self):
|
||||||
|
"""Register for sensor updates."""
|
||||||
|
|
||||||
|
@callback
|
||||||
|
def async_update_callback():
|
||||||
|
"""Schedule an entity update."""
|
||||||
|
self.async_schedule_update_ha_state(True)
|
||||||
|
|
||||||
|
async_dispatcher_connect(
|
||||||
|
self.hass,
|
||||||
|
SIGNAL_TADO_UPDATE_RECEIVED.format("zone", self.zone_id),
|
||||||
|
async_update_callback,
|
||||||
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def supported_features(self):
|
||||||
|
"""Return the list of supported features."""
|
||||||
|
return self._supported_features
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
"""Return the name of the entity."""
|
||||||
|
return self.zone_name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return the unique id."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def should_poll(self) -> bool:
|
||||||
|
"""Do not poll."""
|
||||||
|
return False
|
||||||
|
|
||||||
|
@property
|
||||||
|
def current_operation(self):
|
||||||
|
"""Return current readable operation mode."""
|
||||||
|
return WATER_HEATER_MAP_TADO.get(self._current_operation)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def target_temperature(self):
|
||||||
|
"""Return the temperature we try to reach."""
|
||||||
|
return self._target_temp
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_away_mode_on(self):
|
||||||
|
"""Return true if away mode is on."""
|
||||||
|
return self._is_away
|
||||||
|
|
||||||
|
@property
|
||||||
|
def operation_list(self):
|
||||||
|
"""Return the list of available operation modes (readable)."""
|
||||||
|
return OPERATION_MODES
|
||||||
|
|
||||||
|
@property
|
||||||
|
def temperature_unit(self):
|
||||||
|
"""Return the unit of measurement used by the platform."""
|
||||||
|
return TEMP_CELSIUS
|
||||||
|
|
||||||
|
@property
|
||||||
|
def min_temp(self):
|
||||||
|
"""Return the minimum temperature."""
|
||||||
|
return self._min_temperature
|
||||||
|
|
||||||
|
@property
|
||||||
|
def max_temp(self):
|
||||||
|
"""Return the maximum temperature."""
|
||||||
|
return self._max_temperature
|
||||||
|
|
||||||
|
def set_operation_mode(self, operation_mode):
|
||||||
|
"""Set new operation mode."""
|
||||||
|
mode = None
|
||||||
|
|
||||||
|
if operation_mode == MODE_OFF:
|
||||||
|
mode = CONST_MODE_OFF
|
||||||
|
elif operation_mode == MODE_AUTO:
|
||||||
|
mode = CONST_MODE_SMART_SCHEDULE
|
||||||
|
elif operation_mode == MODE_HEAT:
|
||||||
|
mode = self._default_overlay
|
||||||
|
|
||||||
|
self._current_operation = mode
|
||||||
|
self._overlay_mode = None
|
||||||
|
|
||||||
|
# Set a target temperature if we don't have any
|
||||||
|
if mode == CONST_OVERLAY_TADO_MODE and self._target_temp is None:
|
||||||
|
self._target_temp = self.min_temp
|
||||||
|
|
||||||
|
self._control_heater()
|
||||||
|
|
||||||
|
def set_temperature(self, **kwargs):
|
||||||
|
"""Set new target temperature."""
|
||||||
|
temperature = kwargs.get(ATTR_TEMPERATURE)
|
||||||
|
if not self._supports_temperature_control or temperature is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
self._current_operation = self._default_overlay
|
||||||
|
self._overlay_mode = None
|
||||||
|
self._target_temp = temperature
|
||||||
|
self._control_heater()
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
"""Handle update callbacks."""
|
||||||
|
_LOGGER.debug("Updating water_heater platform for zone %d", self.zone_id)
|
||||||
|
data = self._tado.data["zone"][self.zone_id]
|
||||||
|
|
||||||
|
if "tadoMode" in data:
|
||||||
|
mode = data["tadoMode"]
|
||||||
|
self._is_away = mode == "AWAY"
|
||||||
|
|
||||||
|
if "setting" in data:
|
||||||
|
power = data["setting"]["power"]
|
||||||
|
if power == "OFF":
|
||||||
|
self._current_operation = CONST_MODE_OFF
|
||||||
|
# There is no overlay, the mode will always be
|
||||||
|
# "SMART_SCHEDULE"
|
||||||
|
self._overlay_mode = CONST_MODE_SMART_SCHEDULE
|
||||||
|
self._device_is_active = False
|
||||||
|
else:
|
||||||
|
self._device_is_active = True
|
||||||
|
|
||||||
|
# temperature setting will not exist when device is off
|
||||||
|
if (
|
||||||
|
"temperature" in data["setting"]
|
||||||
|
and data["setting"]["temperature"] is not None
|
||||||
|
):
|
||||||
|
setting = float(data["setting"]["temperature"]["celsius"])
|
||||||
|
self._target_temp = setting
|
||||||
|
|
||||||
|
overlay = False
|
||||||
|
overlay_data = None
|
||||||
|
termination = CONST_MODE_SMART_SCHEDULE
|
||||||
|
|
||||||
|
if "overlay" in data:
|
||||||
|
overlay_data = data["overlay"]
|
||||||
|
overlay = overlay_data is not None
|
||||||
|
|
||||||
|
if overlay:
|
||||||
|
termination = overlay_data["termination"]["type"]
|
||||||
|
|
||||||
|
if self._device_is_active:
|
||||||
|
# If you set mode manually to off, there will be an overlay
|
||||||
|
# and a termination, but we want to see the mode "OFF"
|
||||||
|
self._overlay_mode = termination
|
||||||
|
self._current_operation = termination
|
||||||
|
|
||||||
|
def _control_heater(self):
|
||||||
|
"""Send new target temperature."""
|
||||||
|
if self._current_operation == CONST_MODE_SMART_SCHEDULE:
|
||||||
|
_LOGGER.debug(
|
||||||
|
"Switching to SMART_SCHEDULE for zone %s (%d)",
|
||||||
|
self.zone_name,
|
||||||
|
self.zone_id,
|
||||||
|
)
|
||||||
|
self._tado.reset_zone_overlay(self.zone_id)
|
||||||
|
self._overlay_mode = self._current_operation
|
||||||
|
return
|
||||||
|
|
||||||
|
if self._current_operation == CONST_MODE_OFF:
|
||||||
|
_LOGGER.debug(
|
||||||
|
"Switching to OFF for zone %s (%d)", self.zone_name, self.zone_id
|
||||||
|
)
|
||||||
|
self._tado.set_zone_off(self.zone_id, CONST_OVERLAY_MANUAL, TYPE_HOT_WATER)
|
||||||
|
self._overlay_mode = self._current_operation
|
||||||
|
return
|
||||||
|
|
||||||
|
_LOGGER.debug(
|
||||||
|
"Switching to %s for zone %s (%d) with temperature %s",
|
||||||
|
self._current_operation,
|
||||||
|
self.zone_name,
|
||||||
|
self.zone_id,
|
||||||
|
self._target_temp,
|
||||||
|
)
|
||||||
|
self._tado.set_zone_overlay(
|
||||||
|
self.zone_id,
|
||||||
|
self._current_operation,
|
||||||
|
self._target_temp,
|
||||||
|
None,
|
||||||
|
TYPE_HOT_WATER,
|
||||||
|
)
|
||||||
|
self._overlay_mode = self._current_operation
|
Loading…
x
Reference in New Issue
Block a user