mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
Update aioairzone-cloud to v0.5.3 (#120100)
This commit is contained in:
parent
7fa74fcb07
commit
289a54d632
@ -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.5.2"]
|
"requirements": ["aioairzone-cloud==0.5.3"]
|
||||||
}
|
}
|
||||||
|
@ -182,7 +182,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.5.2
|
aioairzone-cloud==0.5.3
|
||||||
|
|
||||||
# homeassistant.components.airzone
|
# homeassistant.components.airzone
|
||||||
aioairzone==0.7.7
|
aioairzone==0.7.7
|
||||||
|
@ -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.5.2
|
aioairzone-cloud==0.5.3
|
||||||
|
|
||||||
# homeassistant.components.airzone
|
# homeassistant.components.airzone
|
||||||
aioairzone==0.7.7
|
aioairzone==0.7.7
|
||||||
|
@ -438,6 +438,7 @@
|
|||||||
'zone1': dict({
|
'zone1': dict({
|
||||||
'action': 1,
|
'action': 1,
|
||||||
'active': True,
|
'active': True,
|
||||||
|
'air-demand': True,
|
||||||
'aq-active': False,
|
'aq-active': False,
|
||||||
'aq-index': 1,
|
'aq-index': 1,
|
||||||
'aq-mode-conf': 'auto',
|
'aq-mode-conf': 'auto',
|
||||||
@ -453,6 +454,7 @@
|
|||||||
'aq-status': 'good',
|
'aq-status': 'good',
|
||||||
'available': True,
|
'available': True,
|
||||||
'double-set-point': False,
|
'double-set-point': False,
|
||||||
|
'floor-demand': False,
|
||||||
'humidity': 30,
|
'humidity': 30,
|
||||||
'id': 'zone1',
|
'id': 'zone1',
|
||||||
'installation': 'installation1',
|
'installation': 'installation1',
|
||||||
@ -499,6 +501,7 @@
|
|||||||
'zone2': dict({
|
'zone2': dict({
|
||||||
'action': 6,
|
'action': 6,
|
||||||
'active': False,
|
'active': False,
|
||||||
|
'air-demand': False,
|
||||||
'aq-active': False,
|
'aq-active': False,
|
||||||
'aq-index': 1,
|
'aq-index': 1,
|
||||||
'aq-mode-conf': 'auto',
|
'aq-mode-conf': 'auto',
|
||||||
@ -514,6 +517,7 @@
|
|||||||
'aq-status': 'good',
|
'aq-status': 'good',
|
||||||
'available': True,
|
'available': True,
|
||||||
'double-set-point': False,
|
'double-set-point': False,
|
||||||
|
'floor-demand': False,
|
||||||
'humidity': 24,
|
'humidity': 24,
|
||||||
'id': 'zone2',
|
'id': 'zone2',
|
||||||
'installation': 'installation1',
|
'installation': 'installation1',
|
||||||
|
@ -6,6 +6,7 @@ from unittest.mock import patch
|
|||||||
from aioairzone_cloud.common import OperationMode
|
from aioairzone_cloud.common import OperationMode
|
||||||
from aioairzone_cloud.const import (
|
from aioairzone_cloud.const import (
|
||||||
API_ACTIVE,
|
API_ACTIVE,
|
||||||
|
API_AIR_ACTIVE,
|
||||||
API_AQ_ACTIVE,
|
API_AQ_ACTIVE,
|
||||||
API_AQ_MODE_CONF,
|
API_AQ_MODE_CONF,
|
||||||
API_AQ_MODE_VALUES,
|
API_AQ_MODE_VALUES,
|
||||||
@ -42,6 +43,7 @@ from aioairzone_cloud.const import (
|
|||||||
API_OLD_ID,
|
API_OLD_ID,
|
||||||
API_POWER,
|
API_POWER,
|
||||||
API_POWERFUL_MODE,
|
API_POWERFUL_MODE,
|
||||||
|
API_RAD_ACTIVE,
|
||||||
API_RANGE_MAX_AIR,
|
API_RANGE_MAX_AIR,
|
||||||
API_RANGE_MIN_AIR,
|
API_RANGE_MIN_AIR,
|
||||||
API_RANGE_SP_MAX_ACS,
|
API_RANGE_SP_MAX_ACS,
|
||||||
@ -353,6 +355,7 @@ def mock_get_device_status(device: Device) -> dict[str, Any]:
|
|||||||
if device.get_id() == "zone1":
|
if device.get_id() == "zone1":
|
||||||
return {
|
return {
|
||||||
API_ACTIVE: True,
|
API_ACTIVE: True,
|
||||||
|
API_AIR_ACTIVE: True,
|
||||||
API_AQ_ACTIVE: False,
|
API_AQ_ACTIVE: False,
|
||||||
API_AQ_MODE_CONF: "auto",
|
API_AQ_MODE_CONF: "auto",
|
||||||
API_AQ_MODE_VALUES: ["off", "on", "auto"],
|
API_AQ_MODE_VALUES: ["off", "on", "auto"],
|
||||||
@ -370,6 +373,7 @@ def mock_get_device_status(device: Device) -> dict[str, Any]:
|
|||||||
OperationMode.VENTILATION.value,
|
OperationMode.VENTILATION.value,
|
||||||
OperationMode.DRY.value,
|
OperationMode.DRY.value,
|
||||||
],
|
],
|
||||||
|
API_RAD_ACTIVE: False,
|
||||||
API_RANGE_MAX_AIR: {API_CELSIUS: 30, API_FAH: 86},
|
API_RANGE_MAX_AIR: {API_CELSIUS: 30, API_FAH: 86},
|
||||||
API_RANGE_SP_MAX_COOL_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
API_RANGE_SP_MAX_COOL_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
||||||
API_RANGE_SP_MAX_DRY_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
API_RANGE_SP_MAX_DRY_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
||||||
@ -398,6 +402,7 @@ def mock_get_device_status(device: Device) -> dict[str, Any]:
|
|||||||
if device.get_id() == "zone2":
|
if device.get_id() == "zone2":
|
||||||
return {
|
return {
|
||||||
API_ACTIVE: False,
|
API_ACTIVE: False,
|
||||||
|
API_AIR_ACTIVE: False,
|
||||||
API_AQ_ACTIVE: False,
|
API_AQ_ACTIVE: False,
|
||||||
API_AQ_MODE_CONF: "auto",
|
API_AQ_MODE_CONF: "auto",
|
||||||
API_AQ_MODE_VALUES: ["off", "on", "auto"],
|
API_AQ_MODE_VALUES: ["off", "on", "auto"],
|
||||||
@ -410,6 +415,7 @@ def mock_get_device_status(device: Device) -> dict[str, Any]:
|
|||||||
API_HUMIDITY: 24,
|
API_HUMIDITY: 24,
|
||||||
API_MODE: OperationMode.COOLING.value,
|
API_MODE: OperationMode.COOLING.value,
|
||||||
API_MODE_AVAIL: [],
|
API_MODE_AVAIL: [],
|
||||||
|
API_RAD_ACTIVE: False,
|
||||||
API_RANGE_MAX_AIR: {API_CELSIUS: 30, API_FAH: 86},
|
API_RANGE_MAX_AIR: {API_CELSIUS: 30, API_FAH: 86},
|
||||||
API_RANGE_SP_MAX_COOL_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
API_RANGE_SP_MAX_COOL_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
||||||
API_RANGE_SP_MAX_DRY_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
API_RANGE_SP_MAX_DRY_AIR: {API_FAH: 86, API_CELSIUS: 30},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user