Revert "Integration tado bump" (#98505)
Revert "Integration tado bump (#97791)"
This reverts commit 65365d1db5
.
This commit is contained in:
parent
6f4294dc62
commit
2d4decc9b1
4 changed files with 23 additions and 22 deletions
|
@ -163,11 +163,12 @@ class TadoConnector:
|
||||||
|
|
||||||
def setup(self):
|
def setup(self):
|
||||||
"""Connect to Tado and fetch the zones."""
|
"""Connect to Tado and fetch the zones."""
|
||||||
self.tado = Tado(self._username, self._password, None, True)
|
self.tado = Tado(self._username, self._password)
|
||||||
|
self.tado.setDebugging(True)
|
||||||
# Load zones and devices
|
# Load zones and devices
|
||||||
self.zones = self.tado.get_zones()
|
self.zones = self.tado.getZones()
|
||||||
self.devices = self.tado.get_devices()
|
self.devices = self.tado.getDevices()
|
||||||
tado_home = self.tado.get_me()["homes"][0]
|
tado_home = self.tado.getMe()["homes"][0]
|
||||||
self.home_id = tado_home["id"]
|
self.home_id = tado_home["id"]
|
||||||
self.home_name = tado_home["name"]
|
self.home_name = tado_home["name"]
|
||||||
|
|
||||||
|
@ -180,7 +181,7 @@ class TadoConnector:
|
||||||
|
|
||||||
def update_devices(self):
|
def update_devices(self):
|
||||||
"""Update the device data from Tado."""
|
"""Update the device data from Tado."""
|
||||||
devices = self.tado.get_devices()
|
devices = self.tado.getDevices()
|
||||||
for device in devices:
|
for device in devices:
|
||||||
device_short_serial_no = device["shortSerialNo"]
|
device_short_serial_no = device["shortSerialNo"]
|
||||||
_LOGGER.debug("Updating device %s", device_short_serial_no)
|
_LOGGER.debug("Updating device %s", device_short_serial_no)
|
||||||
|
@ -189,7 +190,7 @@ class TadoConnector:
|
||||||
INSIDE_TEMPERATURE_MEASUREMENT
|
INSIDE_TEMPERATURE_MEASUREMENT
|
||||||
in device["characteristics"]["capabilities"]
|
in device["characteristics"]["capabilities"]
|
||||||
):
|
):
|
||||||
device[TEMP_OFFSET] = self.tado.get_device_info(
|
device[TEMP_OFFSET] = self.tado.getDeviceInfo(
|
||||||
device_short_serial_no, TEMP_OFFSET
|
device_short_serial_no, TEMP_OFFSET
|
||||||
)
|
)
|
||||||
except RuntimeError:
|
except RuntimeError:
|
||||||
|
@ -217,7 +218,7 @@ class TadoConnector:
|
||||||
def update_zones(self):
|
def update_zones(self):
|
||||||
"""Update the zone data from Tado."""
|
"""Update the zone data from Tado."""
|
||||||
try:
|
try:
|
||||||
zone_states = self.tado.get_zone_states()["zoneStates"]
|
zone_states = self.tado.getZoneStates()["zoneStates"]
|
||||||
except RuntimeError:
|
except RuntimeError:
|
||||||
_LOGGER.error("Unable to connect to Tado while updating zones")
|
_LOGGER.error("Unable to connect to Tado while updating zones")
|
||||||
return
|
return
|
||||||
|
@ -229,7 +230,7 @@ class TadoConnector:
|
||||||
"""Update the internal data from Tado."""
|
"""Update the internal data from Tado."""
|
||||||
_LOGGER.debug("Updating zone %s", zone_id)
|
_LOGGER.debug("Updating zone %s", zone_id)
|
||||||
try:
|
try:
|
||||||
data = self.tado.get_zone_state(zone_id)
|
data = self.tado.getZoneState(zone_id)
|
||||||
except RuntimeError:
|
except RuntimeError:
|
||||||
_LOGGER.error("Unable to connect to Tado while updating zone %s", zone_id)
|
_LOGGER.error("Unable to connect to Tado while updating zone %s", zone_id)
|
||||||
return
|
return
|
||||||
|
@ -250,8 +251,8 @@ class TadoConnector:
|
||||||
def update_home(self):
|
def update_home(self):
|
||||||
"""Update the home data from Tado."""
|
"""Update the home data from Tado."""
|
||||||
try:
|
try:
|
||||||
self.data["weather"] = self.tado.get_weather()
|
self.data["weather"] = self.tado.getWeather()
|
||||||
self.data["geofence"] = self.tado.get_home_state()
|
self.data["geofence"] = self.tado.getHomeState()
|
||||||
dispatcher_send(
|
dispatcher_send(
|
||||||
self.hass,
|
self.hass,
|
||||||
SIGNAL_TADO_UPDATE_RECEIVED.format(self.home_id, "home", "data"),
|
SIGNAL_TADO_UPDATE_RECEIVED.format(self.home_id, "home", "data"),
|
||||||
|
@ -264,15 +265,15 @@ class TadoConnector:
|
||||||
|
|
||||||
def get_capabilities(self, zone_id):
|
def get_capabilities(self, zone_id):
|
||||||
"""Return the capabilities of the devices."""
|
"""Return the capabilities of the devices."""
|
||||||
return self.tado.get_capabilities(zone_id)
|
return self.tado.getCapabilities(zone_id)
|
||||||
|
|
||||||
def get_auto_geofencing_supported(self):
|
def get_auto_geofencing_supported(self):
|
||||||
"""Return whether the Tado Home supports auto geofencing."""
|
"""Return whether the Tado Home supports auto geofencing."""
|
||||||
return self.tado.get_auto_geofencing_supported()
|
return self.tado.getAutoGeofencingSupported()
|
||||||
|
|
||||||
def reset_zone_overlay(self, zone_id):
|
def reset_zone_overlay(self, zone_id):
|
||||||
"""Reset the zone back to the default operation."""
|
"""Reset the zone back to the default operation."""
|
||||||
self.tado.reset_zone_overlay(zone_id)
|
self.tado.resetZoneOverlay(zone_id)
|
||||||
self.update_zone(zone_id)
|
self.update_zone(zone_id)
|
||||||
|
|
||||||
def set_presence(
|
def set_presence(
|
||||||
|
@ -281,11 +282,11 @@ class TadoConnector:
|
||||||
):
|
):
|
||||||
"""Set the presence to home, away or auto."""
|
"""Set the presence to home, away or auto."""
|
||||||
if presence == PRESET_AWAY:
|
if presence == PRESET_AWAY:
|
||||||
self.tado.set_away()
|
self.tado.setAway()
|
||||||
elif presence == PRESET_HOME:
|
elif presence == PRESET_HOME:
|
||||||
self.tado.set_home()
|
self.tado.setHome()
|
||||||
elif presence == PRESET_AUTO:
|
elif presence == PRESET_AUTO:
|
||||||
self.tado.set_auto()
|
self.tado.setAuto()
|
||||||
|
|
||||||
# Update everything when changing modes
|
# Update everything when changing modes
|
||||||
self.update_zones()
|
self.update_zones()
|
||||||
|
@ -319,7 +320,7 @@ class TadoConnector:
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.tado.set_zone_overlay(
|
self.tado.setZoneOverlay(
|
||||||
zone_id,
|
zone_id,
|
||||||
overlay_mode,
|
overlay_mode,
|
||||||
temperature,
|
temperature,
|
||||||
|
@ -339,7 +340,7 @@ class TadoConnector:
|
||||||
def set_zone_off(self, zone_id, overlay_mode, device_type="HEATING"):
|
def set_zone_off(self, zone_id, overlay_mode, device_type="HEATING"):
|
||||||
"""Set a zone to off."""
|
"""Set a zone to off."""
|
||||||
try:
|
try:
|
||||||
self.tado.set_zone_overlay(
|
self.tado.setZoneOverlay(
|
||||||
zone_id, overlay_mode, None, None, device_type, "OFF"
|
zone_id, overlay_mode, None, None, device_type, "OFF"
|
||||||
)
|
)
|
||||||
except RequestException as exc:
|
except RequestException as exc:
|
||||||
|
@ -350,6 +351,6 @@ class TadoConnector:
|
||||||
def set_temperature_offset(self, device_id, offset):
|
def set_temperature_offset(self, device_id, offset):
|
||||||
"""Set temperature offset of device."""
|
"""Set temperature offset of device."""
|
||||||
try:
|
try:
|
||||||
self.tado.set_temp_offset(device_id, offset)
|
self.tado.setTempOffset(device_id, offset)
|
||||||
except RequestException as exc:
|
except RequestException as exc:
|
||||||
_LOGGER.error("Could not set temperature offset: %s", exc)
|
_LOGGER.error("Could not set temperature offset: %s", exc)
|
||||||
|
|
|
@ -14,5 +14,5 @@
|
||||||
},
|
},
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"loggers": ["PyTado"],
|
"loggers": ["PyTado"],
|
||||||
"requirements": ["python-tado==0.16.0"]
|
"requirements": ["python-tado==0.15.0"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2162,7 +2162,7 @@ python-smarttub==0.0.33
|
||||||
python-songpal==0.15.2
|
python-songpal==0.15.2
|
||||||
|
|
||||||
# homeassistant.components.tado
|
# homeassistant.components.tado
|
||||||
python-tado==0.16.0
|
python-tado==0.15.0
|
||||||
|
|
||||||
# homeassistant.components.telegram_bot
|
# homeassistant.components.telegram_bot
|
||||||
python-telegram-bot==13.1
|
python-telegram-bot==13.1
|
||||||
|
|
|
@ -1588,7 +1588,7 @@ python-smarttub==0.0.33
|
||||||
python-songpal==0.15.2
|
python-songpal==0.15.2
|
||||||
|
|
||||||
# homeassistant.components.tado
|
# homeassistant.components.tado
|
||||||
python-tado==0.16.0
|
python-tado==0.15.0
|
||||||
|
|
||||||
# homeassistant.components.telegram_bot
|
# homeassistant.components.telegram_bot
|
||||||
python-telegram-bot==13.1
|
python-telegram-bot==13.1
|
||||||
|
|
Loading…
Add table
Reference in a new issue