Skip to content

Commit 62845fe

Browse files
authored
Update aioairzone to v1.0.0 (#142385)
Signed-off-by: Álvaro Fernández Rojas <[email protected]>
1 parent c93b4cf commit 62845fe

File tree

5 files changed

+29
-3
lines changed

5 files changed

+29
-3
lines changed

homeassistant/components/airzone/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"documentation": "https://www.home-assistant.io/integrations/airzone",
1212
"iot_class": "local_polling",
1313
"loggers": ["aioairzone"],
14-
"requirements": ["aioairzone==0.9.9"]
14+
"requirements": ["aioairzone==1.0.0"]
1515
}

requirements_all.txt

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/components/airzone/snapshots/test_diagnostics.ambr

+16
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,11 @@
4444
}),
4545
dict({
4646
'air_demand': 1,
47+
'battery': 99,
4748
'coldStage': 1,
4849
'coldStages': 1,
4950
'coldangle': 2,
51+
'coverage': 72,
5052
'errors': list([
5153
]),
5254
'floor_demand': 1,
@@ -73,9 +75,11 @@
7375
}),
7476
dict({
7577
'air_demand': 0,
78+
'battery': 35,
7679
'coldStage': 1,
7780
'coldStages': 1,
7881
'coldangle': 0,
82+
'coverage': 60,
7983
'errors': list([
8084
]),
8185
'floor_demand': 0,
@@ -100,9 +104,11 @@
100104
}),
101105
dict({
102106
'air_demand': 0,
107+
'battery': 25,
103108
'coldStage': 1,
104109
'coldStages': 1,
105110
'coldangle': 0,
111+
'coverage': 88,
106112
'errors': list([
107113
dict({
108114
'Zone': 'Low battery',
@@ -130,9 +136,11 @@
130136
}),
131137
dict({
132138
'air_demand': 0,
139+
'battery': 80,
133140
'coldStage': 1,
134141
'coldStages': 1,
135142
'coldangle': 0,
143+
'coverage': 66,
136144
'errors': list([
137145
]),
138146
'floor_demand': 0,
@@ -497,9 +505,11 @@
497505
'temp-set': 19.2,
498506
'temp-step': 0.5,
499507
'temp-unit': 0,
508+
'thermostat-battery': 99,
500509
'thermostat-fw': '3.33',
501510
'thermostat-model': 'Think (Radio)',
502511
'thermostat-radio': True,
512+
'thermostat-signal': 72,
503513
}),
504514
'1:3': dict({
505515
'absolute-temp-max': 30.0,
@@ -546,9 +556,11 @@
546556
'temp-set': 19.3,
547557
'temp-step': 0.5,
548558
'temp-unit': 0,
559+
'thermostat-battery': 35,
549560
'thermostat-fw': '3.33',
550561
'thermostat-model': 'Think (Radio)',
551562
'thermostat-radio': True,
563+
'thermostat-signal': 60,
552564
}),
553565
'1:4': dict({
554566
'absolute-temp-max': 86.0,
@@ -597,9 +609,11 @@
597609
'temp-set': 66.9,
598610
'temp-step': 1.0,
599611
'temp-unit': 1,
612+
'thermostat-battery': 25,
600613
'thermostat-fw': '3.33',
601614
'thermostat-model': 'Think (Radio)',
602615
'thermostat-radio': True,
616+
'thermostat-signal': 88,
603617
}),
604618
'1:5': dict({
605619
'absolute-temp-max': 30.0,
@@ -645,9 +659,11 @@
645659
'temp-set': 19.5,
646660
'temp-step': 0.5,
647661
'temp-unit': 0,
662+
'thermostat-battery': 80,
648663
'thermostat-fw': '3.33',
649664
'thermostat-model': 'Think (Radio)',
650665
'thermostat-radio': True,
666+
'thermostat-signal': 66,
651667
}),
652668
'2:1': dict({
653669
'absolute-temp-max': 30.0,

tests/components/airzone/util.py

+10
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@
1111
API_ACS_SET_POINT,
1212
API_ACS_TEMP,
1313
API_AIR_DEMAND,
14+
API_BATTERY,
1415
API_COLD_ANGLE,
1516
API_COLD_STAGE,
1617
API_COLD_STAGES,
1718
API_COOL_MAX_TEMP,
1819
API_COOL_MIN_TEMP,
1920
API_COOL_SET_POINT,
21+
API_COVERAGE,
2022
API_DATA,
2123
API_ERRORS,
2224
API_FLOOR_DEMAND,
@@ -119,6 +121,8 @@
119121
API_THERMOS_TYPE: 4,
120122
API_THERMOS_FIRMWARE: "3.33",
121123
API_THERMOS_RADIO: 1,
124+
API_BATTERY: 99,
125+
API_COVERAGE: 72,
122126
API_ON: 1,
123127
API_MAX_TEMP: 30,
124128
API_MIN_TEMP: 15,
@@ -147,6 +151,8 @@
147151
API_THERMOS_TYPE: 4,
148152
API_THERMOS_FIRMWARE: "3.33",
149153
API_THERMOS_RADIO: 1,
154+
API_BATTERY: 35,
155+
API_COVERAGE: 60,
150156
API_ON: 1,
151157
API_MAX_TEMP: 30,
152158
API_MIN_TEMP: 15,
@@ -173,6 +179,8 @@
173179
API_THERMOS_TYPE: 4,
174180
API_THERMOS_FIRMWARE: "3.33",
175181
API_THERMOS_RADIO: 1,
182+
API_BATTERY: 25,
183+
API_COVERAGE: 88,
176184
API_ON: 0,
177185
API_MAX_TEMP: 86,
178186
API_MIN_TEMP: 59,
@@ -203,6 +211,8 @@
203211
API_THERMOS_TYPE: 4,
204212
API_THERMOS_FIRMWARE: "3.33",
205213
API_THERMOS_RADIO: 1,
214+
API_BATTERY: 80,
215+
API_COVERAGE: 66,
206216
API_ON: 0,
207217
API_MAX_TEMP: 30,
208218
API_MIN_TEMP: 15,

0 commit comments

Comments
 (0)