mirror of
https://github.com/home-assistant/core.git
synced 2025-07-20 11:47:06 +00:00
Update aioairzone to v0.6.3 and fix issue with latest firmware update (#94100)
This commit is contained in:
parent
9cbb993296
commit
6019ec305a
@ -11,5 +11,5 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/airzone",
|
"documentation": "https://www.home-assistant.io/integrations/airzone",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["aioairzone"],
|
"loggers": ["aioairzone"],
|
||||||
"requirements": ["aioairzone==0.6.1"]
|
"requirements": ["aioairzone==0.6.3"]
|
||||||
}
|
}
|
||||||
|
@ -197,7 +197,7 @@ aioairq==0.2.4
|
|||||||
aioairzone-cloud==0.1.7
|
aioairzone-cloud==0.1.7
|
||||||
|
|
||||||
# homeassistant.components.airzone
|
# homeassistant.components.airzone
|
||||||
aioairzone==0.6.1
|
aioairzone==0.6.3
|
||||||
|
|
||||||
# homeassistant.components.ambient_station
|
# homeassistant.components.ambient_station
|
||||||
aioambient==2023.04.0
|
aioambient==2023.04.0
|
||||||
|
@ -172,7 +172,7 @@ aioairq==0.2.4
|
|||||||
aioairzone-cloud==0.1.7
|
aioairzone-cloud==0.1.7
|
||||||
|
|
||||||
# homeassistant.components.airzone
|
# homeassistant.components.airzone
|
||||||
aioairzone==0.6.1
|
aioairzone==0.6.3
|
||||||
|
|
||||||
# homeassistant.components.ambient_station
|
# homeassistant.components.ambient_station
|
||||||
aioambient==2023.04.0
|
aioambient==2023.04.0
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
"""The climate tests for the Airzone platform."""
|
"""The climate tests for the Airzone platform."""
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from aioairzone.common import OperationMode
|
|
||||||
from aioairzone.const import (
|
from aioairzone.const import (
|
||||||
API_COOL_SET_POINT,
|
API_COOL_SET_POINT,
|
||||||
API_DATA,
|
API_DATA,
|
||||||
API_HEAT_SET_POINT,
|
API_HEAT_SET_POINT,
|
||||||
API_MAX_TEMP,
|
API_MAX_TEMP,
|
||||||
API_MIN_TEMP,
|
API_MIN_TEMP,
|
||||||
API_MODE,
|
|
||||||
API_ON,
|
API_ON,
|
||||||
API_SET_POINT,
|
API_SET_POINT,
|
||||||
API_SPEED,
|
API_SPEED,
|
||||||
@ -336,7 +334,6 @@ async def test_airzone_climate_set_hvac_mode(hass: HomeAssistant) -> None:
|
|||||||
{
|
{
|
||||||
API_SYSTEM_ID: 1,
|
API_SYSTEM_ID: 1,
|
||||||
API_ZONE_ID: 1,
|
API_ZONE_ID: 1,
|
||||||
API_MODE: OperationMode.COOLING.value,
|
|
||||||
API_ON: 1,
|
API_ON: 1,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user