Update aioairzone-cloud to v0.6.1 (#122661)
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>pull/122665/head
parent
b2b40d9ed6
commit
57a5c7c8b6
|
@ -6,5 +6,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/airzone_cloud",
|
||||
"iot_class": "cloud_push",
|
||||
"loggers": ["aioairzone_cloud"],
|
||||
"requirements": ["aioairzone-cloud==0.6.0"]
|
||||
"requirements": ["aioairzone-cloud==0.6.1"]
|
||||
}
|
||||
|
|
|
@ -176,7 +176,7 @@ aio-georss-gdacs==0.9
|
|||
aioairq==0.3.2
|
||||
|
||||
# homeassistant.components.airzone_cloud
|
||||
aioairzone-cloud==0.6.0
|
||||
aioairzone-cloud==0.6.1
|
||||
|
||||
# homeassistant.components.airzone
|
||||
aioairzone==0.8.1
|
||||
|
|
|
@ -161,7 +161,7 @@ aio-georss-gdacs==0.9
|
|||
aioairq==0.3.2
|
||||
|
||||
# homeassistant.components.airzone_cloud
|
||||
aioairzone-cloud==0.6.0
|
||||
aioairzone-cloud==0.6.1
|
||||
|
||||
# homeassistant.components.airzone
|
||||
aioairzone==0.8.1
|
||||
|
|
|
@ -396,10 +396,12 @@
|
|||
'webserver1': dict({
|
||||
'available': True,
|
||||
'connection-date': '2023-05-07T12:55:51.000Z',
|
||||
'cpu-usage': 32,
|
||||
'disconnection-date': '2023-01-01T22:26:55.376Z',
|
||||
'firmware': '3.44',
|
||||
'id': 'webserver1',
|
||||
'installation': 'installation1',
|
||||
'memory-free': 42616,
|
||||
'name': 'WebServer 11:22:33:44:55:66',
|
||||
'type': 'ws_az',
|
||||
'wifi-channel': 36,
|
||||
|
@ -565,6 +567,7 @@
|
|||
'temperature-setpoint-vent-air': 24.0,
|
||||
'temperature-step': 0.5,
|
||||
'thermostat-battery': 54,
|
||||
'thermostat-battery-low': False,
|
||||
'thermostat-coverage': 76,
|
||||
'thermostat-fw': '3.33',
|
||||
'thermostat-model': 'thinkradio',
|
||||
|
|
|
@ -24,12 +24,16 @@ from aioairzone_cloud.const import (
|
|||
API_CELSIUS,
|
||||
API_CONFIG,
|
||||
API_CONNECTION_DATE,
|
||||
API_CPU_WS,
|
||||
API_DEVICE_ID,
|
||||
API_DEVICES,
|
||||
API_DISCONNECTION_DATE,
|
||||
API_DOUBLE_SET_POINT,
|
||||
API_ERRORS,
|
||||
API_FAH,
|
||||
API_FREE,
|
||||
API_FREE_MEM,
|
||||
API_GENERAL,
|
||||
API_GROUP_ID,
|
||||
API_GROUPS,
|
||||
API_HUMIDITY,
|
||||
|
@ -210,6 +214,12 @@ GET_WEBSERVER_MOCK = {
|
|||
API_STAT_AP_MAC: "00:00:00:00:00:00",
|
||||
},
|
||||
API_STATUS: {
|
||||
API_CPU_WS: {
|
||||
API_GENERAL: 32,
|
||||
},
|
||||
API_FREE_MEM: {
|
||||
API_FREE: 42616,
|
||||
},
|
||||
API_IS_CONNECTED: True,
|
||||
API_STAT_QUALITY: 4,
|
||||
API_STAT_RSSI: -56,
|
||||
|
|
Loading…
Reference in New Issue