Update aioairzone to v1.0.0 (#142385)

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
Álvaro Fernández Rojas
2025-04-06 10:01:26 +02:00
committed by GitHub
parent c93b4cf61a
commit 62845fe4a7
5 changed files with 29 additions and 3 deletions

View File

@ -11,5 +11,5 @@
"documentation": "https://www.home-assistant.io/integrations/airzone",
"iot_class": "local_polling",
"loggers": ["aioairzone"],
"requirements": ["aioairzone==0.9.9"]
"requirements": ["aioairzone==1.0.0"]
}

2
requirements_all.txt generated
View File

@ -182,7 +182,7 @@ aioairq==0.4.4
aioairzone-cloud==0.6.11
# homeassistant.components.airzone
aioairzone==0.9.9
aioairzone==1.0.0
# homeassistant.components.ambient_network
# homeassistant.components.ambient_station

View File

@ -170,7 +170,7 @@ aioairq==0.4.4
aioairzone-cloud==0.6.11
# homeassistant.components.airzone
aioairzone==0.9.9
aioairzone==1.0.0
# homeassistant.components.ambient_network
# homeassistant.components.ambient_station

View File

@ -44,9 +44,11 @@
}),
dict({
'air_demand': 1,
'battery': 99,
'coldStage': 1,
'coldStages': 1,
'coldangle': 2,
'coverage': 72,
'errors': list([
]),
'floor_demand': 1,
@ -73,9 +75,11 @@
}),
dict({
'air_demand': 0,
'battery': 35,
'coldStage': 1,
'coldStages': 1,
'coldangle': 0,
'coverage': 60,
'errors': list([
]),
'floor_demand': 0,
@ -100,9 +104,11 @@
}),
dict({
'air_demand': 0,
'battery': 25,
'coldStage': 1,
'coldStages': 1,
'coldangle': 0,
'coverage': 88,
'errors': list([
dict({
'Zone': 'Low battery',
@ -130,9 +136,11 @@
}),
dict({
'air_demand': 0,
'battery': 80,
'coldStage': 1,
'coldStages': 1,
'coldangle': 0,
'coverage': 66,
'errors': list([
]),
'floor_demand': 0,
@ -497,9 +505,11 @@
'temp-set': 19.2,
'temp-step': 0.5,
'temp-unit': 0,
'thermostat-battery': 99,
'thermostat-fw': '3.33',
'thermostat-model': 'Think (Radio)',
'thermostat-radio': True,
'thermostat-signal': 72,
}),
'1:3': dict({
'absolute-temp-max': 30.0,
@ -546,9 +556,11 @@
'temp-set': 19.3,
'temp-step': 0.5,
'temp-unit': 0,
'thermostat-battery': 35,
'thermostat-fw': '3.33',
'thermostat-model': 'Think (Radio)',
'thermostat-radio': True,
'thermostat-signal': 60,
}),
'1:4': dict({
'absolute-temp-max': 86.0,
@ -597,9 +609,11 @@
'temp-set': 66.9,
'temp-step': 1.0,
'temp-unit': 1,
'thermostat-battery': 25,
'thermostat-fw': '3.33',
'thermostat-model': 'Think (Radio)',
'thermostat-radio': True,
'thermostat-signal': 88,
}),
'1:5': dict({
'absolute-temp-max': 30.0,
@ -645,9 +659,11 @@
'temp-set': 19.5,
'temp-step': 0.5,
'temp-unit': 0,
'thermostat-battery': 80,
'thermostat-fw': '3.33',
'thermostat-model': 'Think (Radio)',
'thermostat-radio': True,
'thermostat-signal': 66,
}),
'2:1': dict({
'absolute-temp-max': 30.0,

View File

@ -11,12 +11,14 @@ from aioairzone.const import (
API_ACS_SET_POINT,
API_ACS_TEMP,
API_AIR_DEMAND,
API_BATTERY,
API_COLD_ANGLE,
API_COLD_STAGE,
API_COLD_STAGES,
API_COOL_MAX_TEMP,
API_COOL_MIN_TEMP,
API_COOL_SET_POINT,
API_COVERAGE,
API_DATA,
API_ERRORS,
API_FLOOR_DEMAND,
@ -119,6 +121,8 @@ HVAC_MOCK = {
API_THERMOS_TYPE: 4,
API_THERMOS_FIRMWARE: "3.33",
API_THERMOS_RADIO: 1,
API_BATTERY: 99,
API_COVERAGE: 72,
API_ON: 1,
API_MAX_TEMP: 30,
API_MIN_TEMP: 15,
@ -147,6 +151,8 @@ HVAC_MOCK = {
API_THERMOS_TYPE: 4,
API_THERMOS_FIRMWARE: "3.33",
API_THERMOS_RADIO: 1,
API_BATTERY: 35,
API_COVERAGE: 60,
API_ON: 1,
API_MAX_TEMP: 30,
API_MIN_TEMP: 15,
@ -173,6 +179,8 @@ HVAC_MOCK = {
API_THERMOS_TYPE: 4,
API_THERMOS_FIRMWARE: "3.33",
API_THERMOS_RADIO: 1,
API_BATTERY: 25,
API_COVERAGE: 88,
API_ON: 0,
API_MAX_TEMP: 86,
API_MIN_TEMP: 59,
@ -203,6 +211,8 @@ HVAC_MOCK = {
API_THERMOS_TYPE: 4,
API_THERMOS_FIRMWARE: "3.33",
API_THERMOS_RADIO: 1,
API_BATTERY: 80,
API_COVERAGE: 66,
API_ON: 0,
API_MAX_TEMP: 30,
API_MIN_TEMP: 15,