Update aioairzone-cloud to v0.6.1 (#122661)

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
Álvaro Fernández Rojas 2024-07-26 20:41:31 +02:00 committed by GitHub
parent b2b40d9ed6
commit 57a5c7c8b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 3 deletions

View File

@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/airzone_cloud", "documentation": "https://www.home-assistant.io/integrations/airzone_cloud",
"iot_class": "cloud_push", "iot_class": "cloud_push",
"loggers": ["aioairzone_cloud"], "loggers": ["aioairzone_cloud"],
"requirements": ["aioairzone-cloud==0.6.0"] "requirements": ["aioairzone-cloud==0.6.1"]
} }

View File

@ -176,7 +176,7 @@ aio-georss-gdacs==0.9
aioairq==0.3.2 aioairq==0.3.2
# homeassistant.components.airzone_cloud # homeassistant.components.airzone_cloud
aioairzone-cloud==0.6.0 aioairzone-cloud==0.6.1
# homeassistant.components.airzone # homeassistant.components.airzone
aioairzone==0.8.1 aioairzone==0.8.1

View File

@ -161,7 +161,7 @@ aio-georss-gdacs==0.9
aioairq==0.3.2 aioairq==0.3.2
# homeassistant.components.airzone_cloud # homeassistant.components.airzone_cloud
aioairzone-cloud==0.6.0 aioairzone-cloud==0.6.1
# homeassistant.components.airzone # homeassistant.components.airzone
aioairzone==0.8.1 aioairzone==0.8.1

View File

@ -396,10 +396,12 @@
'webserver1': dict({ 'webserver1': dict({
'available': True, 'available': True,
'connection-date': '2023-05-07T12:55:51.000Z', 'connection-date': '2023-05-07T12:55:51.000Z',
'cpu-usage': 32,
'disconnection-date': '2023-01-01T22:26:55.376Z', 'disconnection-date': '2023-01-01T22:26:55.376Z',
'firmware': '3.44', 'firmware': '3.44',
'id': 'webserver1', 'id': 'webserver1',
'installation': 'installation1', 'installation': 'installation1',
'memory-free': 42616,
'name': 'WebServer 11:22:33:44:55:66', 'name': 'WebServer 11:22:33:44:55:66',
'type': 'ws_az', 'type': 'ws_az',
'wifi-channel': 36, 'wifi-channel': 36,
@ -565,6 +567,7 @@
'temperature-setpoint-vent-air': 24.0, 'temperature-setpoint-vent-air': 24.0,
'temperature-step': 0.5, 'temperature-step': 0.5,
'thermostat-battery': 54, 'thermostat-battery': 54,
'thermostat-battery-low': False,
'thermostat-coverage': 76, 'thermostat-coverage': 76,
'thermostat-fw': '3.33', 'thermostat-fw': '3.33',
'thermostat-model': 'thinkradio', 'thermostat-model': 'thinkradio',

View File

@ -24,12 +24,16 @@ from aioairzone_cloud.const import (
API_CELSIUS, API_CELSIUS,
API_CONFIG, API_CONFIG,
API_CONNECTION_DATE, API_CONNECTION_DATE,
API_CPU_WS,
API_DEVICE_ID, API_DEVICE_ID,
API_DEVICES, API_DEVICES,
API_DISCONNECTION_DATE, API_DISCONNECTION_DATE,
API_DOUBLE_SET_POINT, API_DOUBLE_SET_POINT,
API_ERRORS, API_ERRORS,
API_FAH, API_FAH,
API_FREE,
API_FREE_MEM,
API_GENERAL,
API_GROUP_ID, API_GROUP_ID,
API_GROUPS, API_GROUPS,
API_HUMIDITY, API_HUMIDITY,
@ -210,6 +214,12 @@ GET_WEBSERVER_MOCK = {
API_STAT_AP_MAC: "00:00:00:00:00:00", API_STAT_AP_MAC: "00:00:00:00:00:00",
}, },
API_STATUS: { API_STATUS: {
API_CPU_WS: {
API_GENERAL: 32,
},
API_FREE_MEM: {
API_FREE: 42616,
},
API_IS_CONNECTED: True, API_IS_CONNECTED: True,
API_STAT_QUALITY: 4, API_STAT_QUALITY: 4,
API_STAT_RSSI: -56, API_STAT_RSSI: -56,