@mp-consulting/homebridge-daikin-cloud 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. package/.claude/settings.json +3 -0
  2. package/.claude/settings.local.json +8 -0
  3. package/CLAUDE.md +34 -0
  4. package/LICENSE +176 -0
  5. package/README.md +180 -0
  6. package/changelog.md +217 -0
  7. package/config.md +2 -0
  8. package/config.schema.json +146 -0
  9. package/dist/src/accessories/air-conditioning-accessory.d.ts +9 -0
  10. package/dist/src/accessories/air-conditioning-accessory.d.ts.map +1 -0
  11. package/dist/src/accessories/air-conditioning-accessory.js +19 -0
  12. package/dist/src/accessories/air-conditioning-accessory.js.map +1 -0
  13. package/dist/src/accessories/altherma-accessory.d.ts +11 -0
  14. package/dist/src/accessories/altherma-accessory.d.ts.map +1 -0
  15. package/dist/src/accessories/altherma-accessory.js +31 -0
  16. package/dist/src/accessories/altherma-accessory.js.map +1 -0
  17. package/dist/src/accessories/base-accessory.d.ts +16 -0
  18. package/dist/src/accessories/base-accessory.d.ts.map +1 -0
  19. package/dist/src/accessories/base-accessory.js +56 -0
  20. package/dist/src/accessories/base-accessory.js.map +1 -0
  21. package/dist/src/accessories/index.d.ts +4 -0
  22. package/dist/src/accessories/index.d.ts.map +1 -0
  23. package/dist/src/accessories/index.js +20 -0
  24. package/dist/src/accessories/index.js.map +1 -0
  25. package/dist/src/api/daikin-cloud.repository.d.ts +4 -0
  26. package/dist/src/api/daikin-cloud.repository.d.ts.map +1 -0
  27. package/dist/src/api/daikin-cloud.repository.js +31 -0
  28. package/dist/src/api/daikin-cloud.repository.js.map +1 -0
  29. package/dist/src/api/index.d.ts +2 -0
  30. package/dist/src/api/index.d.ts.map +1 -0
  31. package/dist/src/api/index.js +18 -0
  32. package/dist/src/api/index.js.map +1 -0
  33. package/dist/src/device/accessory-factory.d.ts +36 -0
  34. package/dist/src/device/accessory-factory.d.ts.map +1 -0
  35. package/dist/src/device/accessory-factory.js +61 -0
  36. package/dist/src/device/accessory-factory.js.map +1 -0
  37. package/dist/src/device/capability-detector.d.ts +36 -0
  38. package/dist/src/device/capability-detector.d.ts.map +1 -0
  39. package/dist/src/device/capability-detector.js +130 -0
  40. package/dist/src/device/capability-detector.js.map +1 -0
  41. package/dist/src/device/capability-docs.d.ts +20 -0
  42. package/dist/src/device/capability-docs.d.ts.map +1 -0
  43. package/dist/src/device/capability-docs.js +98 -0
  44. package/dist/src/device/capability-docs.js.map +1 -0
  45. package/dist/src/device/index.d.ts +5 -0
  46. package/dist/src/device/index.d.ts.map +1 -0
  47. package/dist/src/device/index.js +21 -0
  48. package/dist/src/device/index.js.map +1 -0
  49. package/dist/src/device/profiles/device-profile.d.ts +42 -0
  50. package/dist/src/device/profiles/device-profile.d.ts.map +1 -0
  51. package/dist/src/device/profiles/device-profile.js +103 -0
  52. package/dist/src/device/profiles/device-profile.js.map +1 -0
  53. package/dist/src/device/profiles/index.d.ts +2 -0
  54. package/dist/src/device/profiles/index.d.ts.map +1 -0
  55. package/dist/src/device/profiles/index.js +18 -0
  56. package/dist/src/device/profiles/index.js.map +1 -0
  57. package/dist/src/features/base-feature.d.ts +65 -0
  58. package/dist/src/features/base-feature.d.ts.map +1 -0
  59. package/dist/src/features/base-feature.js +99 -0
  60. package/dist/src/features/base-feature.js.map +1 -0
  61. package/dist/src/features/feature-manager.d.ts +37 -0
  62. package/dist/src/features/feature-manager.d.ts.map +1 -0
  63. package/dist/src/features/feature-manager.js +68 -0
  64. package/dist/src/features/feature-manager.js.map +1 -0
  65. package/dist/src/features/index.d.ts +4 -0
  66. package/dist/src/features/index.d.ts.map +1 -0
  67. package/dist/src/features/index.js +20 -0
  68. package/dist/src/features/index.js.map +1 -0
  69. package/dist/src/features/modes/dry-operation-mode.feature.d.ts +16 -0
  70. package/dist/src/features/modes/dry-operation-mode.feature.d.ts.map +1 -0
  71. package/dist/src/features/modes/dry-operation-mode.feature.js +40 -0
  72. package/dist/src/features/modes/dry-operation-mode.feature.js.map +1 -0
  73. package/dist/src/features/modes/econo-mode.feature.d.ts +15 -0
  74. package/dist/src/features/modes/econo-mode.feature.d.ts.map +1 -0
  75. package/dist/src/features/modes/econo-mode.feature.js +37 -0
  76. package/dist/src/features/modes/econo-mode.feature.js.map +1 -0
  77. package/dist/src/features/modes/fan-only-operation-mode.feature.d.ts +16 -0
  78. package/dist/src/features/modes/fan-only-operation-mode.feature.d.ts.map +1 -0
  79. package/dist/src/features/modes/fan-only-operation-mode.feature.js +40 -0
  80. package/dist/src/features/modes/fan-only-operation-mode.feature.js.map +1 -0
  81. package/dist/src/features/modes/index.d.ts +8 -0
  82. package/dist/src/features/modes/index.d.ts.map +1 -0
  83. package/dist/src/features/modes/index.js +24 -0
  84. package/dist/src/features/modes/index.js.map +1 -0
  85. package/dist/src/features/modes/indoor-silent-mode.feature.d.ts +17 -0
  86. package/dist/src/features/modes/indoor-silent-mode.feature.d.ts.map +1 -0
  87. package/dist/src/features/modes/indoor-silent-mode.feature.js +47 -0
  88. package/dist/src/features/modes/indoor-silent-mode.feature.js.map +1 -0
  89. package/dist/src/features/modes/outdoor-silent-mode.feature.d.ts +15 -0
  90. package/dist/src/features/modes/outdoor-silent-mode.feature.d.ts.map +1 -0
  91. package/dist/src/features/modes/outdoor-silent-mode.feature.js +37 -0
  92. package/dist/src/features/modes/outdoor-silent-mode.feature.js.map +1 -0
  93. package/dist/src/features/modes/powerful-mode.feature.d.ts +15 -0
  94. package/dist/src/features/modes/powerful-mode.feature.d.ts.map +1 -0
  95. package/dist/src/features/modes/powerful-mode.feature.js +37 -0
  96. package/dist/src/features/modes/powerful-mode.feature.js.map +1 -0
  97. package/dist/src/features/modes/streamer-mode.feature.d.ts +15 -0
  98. package/dist/src/features/modes/streamer-mode.feature.d.ts.map +1 -0
  99. package/dist/src/features/modes/streamer-mode.feature.js +37 -0
  100. package/dist/src/features/modes/streamer-mode.feature.js.map +1 -0
  101. package/dist/src/index.d.ts +7 -0
  102. package/dist/src/index.d.ts.map +1 -0
  103. package/dist/src/index.js +7 -0
  104. package/dist/src/index.js.map +1 -0
  105. package/dist/src/platform.d.ts +33 -0
  106. package/dist/src/platform.d.ts.map +1 -0
  107. package/dist/src/platform.js +209 -0
  108. package/dist/src/platform.js.map +1 -0
  109. package/dist/src/services/climate-control.service.d.ts +43 -0
  110. package/dist/src/services/climate-control.service.d.ts.map +1 -0
  111. package/dist/src/services/climate-control.service.js +366 -0
  112. package/dist/src/services/climate-control.service.js.map +1 -0
  113. package/dist/src/services/hot-water-tank.service.d.ts +23 -0
  114. package/dist/src/services/hot-water-tank.service.d.ts.map +1 -0
  115. package/dist/src/services/hot-water-tank.service.js +214 -0
  116. package/dist/src/services/hot-water-tank.service.js.map +1 -0
  117. package/dist/src/services/index.d.ts +3 -0
  118. package/dist/src/services/index.d.ts.map +1 -0
  119. package/dist/src/services/index.js +19 -0
  120. package/dist/src/services/index.js.map +1 -0
  121. package/dist/src/settings.d.ts +9 -0
  122. package/dist/src/settings.d.ts.map +1 -0
  123. package/dist/src/settings.js +12 -0
  124. package/dist/src/settings.js.map +1 -0
  125. package/dist/src/types/daikin-enums.d.ts +61 -0
  126. package/dist/src/types/daikin-enums.d.ts.map +1 -0
  127. package/dist/src/types/daikin-enums.js +76 -0
  128. package/dist/src/types/daikin-enums.js.map +1 -0
  129. package/dist/src/types/device-capabilities.d.ts +47 -0
  130. package/dist/src/types/device-capabilities.d.ts.map +1 -0
  131. package/dist/src/types/device-capabilities.js +7 -0
  132. package/dist/src/types/device-capabilities.js.map +1 -0
  133. package/dist/src/types/index.d.ts +3 -0
  134. package/dist/src/types/index.d.ts.map +1 -0
  135. package/dist/src/types/index.js +19 -0
  136. package/dist/src/types/index.js.map +1 -0
  137. package/dist/src/utils/strings.d.ts +5 -0
  138. package/dist/src/utils/strings.d.ts.map +1 -0
  139. package/dist/src/utils/strings.js +22 -0
  140. package/dist/src/utils/strings.js.map +1 -0
  141. package/docs/Screenshot 2024-07-04 at 18.41.28.png +0 -0
  142. package/docs/api-response-for-BRP069A8x.json +520 -0
  143. package/docs/api-response-for-BRP069C4x-2.json +881 -0
  144. package/docs/api-response-for-BRP069C4x.json +916 -0
  145. package/docs/api-response-for-altherma.json +759 -0
  146. package/docs/api-response-for-altherma2.json +2735 -0
  147. package/docs/api-response-with-multiple-devices-incl-heatpump.json +2544 -0
  148. package/docs/cr-insance-altherma-id-0.json +834 -0
  149. package/docs/mock-air-to-air-dx23.json +759 -0
  150. package/docs/mock-air-to-air-dx4.json +1134 -0
  151. package/docs/mock-airpurifier-with-humidifier.json +732 -0
  152. package/docs/mock-airpurifier.json +450 -0
  153. package/docs/mock-altherma-air-to-water-lan.json +845 -0
  154. package/docs/mock-altherma-air-to-water-wlan.json +845 -0
  155. package/docs/mock-d2cnd-gas-boiler.json +649 -0
  156. package/docs/setpointmode-vs-controlmode-vs-setpoints-vs-sensorydata.txt +6 -0
  157. package/homebridge-ui/README.md +35 -0
  158. package/homebridge-ui/public/index.html +222 -0
  159. package/homebridge-ui/public/script.js +796 -0
  160. package/homebridge-ui/public/styles.css +456 -0
  161. package/homebridge-ui/server.js +909 -0
  162. package/jest.config.ts +13 -0
  163. package/package.json +63 -0
  164. package/test/fixtures/altherma-crSense-2.ts +834 -0
  165. package/test/fixtures/altherma-fraction.ts +719 -0
  166. package/test/fixtures/altherma-heat-pump-2.ts +479 -0
  167. package/test/fixtures/altherma-heat-pump.ts +758 -0
  168. package/test/fixtures/altherma-miladcerkic-off.ts +524 -0
  169. package/test/fixtures/altherma-miladcerkic.ts +524 -0
  170. package/test/fixtures/altherma-v1ckoeln.ts +645 -0
  171. package/test/fixtures/altherma-with-embedded-id-zero.ts +834 -0
  172. package/test/fixtures/dx23-airco-2.ts +343 -0
  173. package/test/fixtures/dx23-airco.ts +519 -0
  174. package/test/fixtures/dx4-airco.ts +915 -0
  175. package/test/fixtures/unknown-jan.ts +489 -0
  176. package/test/fixtures/unknown-kitchen-guests.ts +489 -0
  177. package/test/hbConfig/.daikin-controller-cloud-tokenset +8 -0
  178. package/test/hbConfig/.uix-dashboard.json +1 -0
  179. package/test/hbConfig/.uix-secrets +1 -0
  180. package/test/hbConfig/accessories/.cachedAccessories.bak +1 -0
  181. package/test/hbConfig/accessories/cachedAccessories +1 -0
  182. package/test/hbConfig/accessories/uiAccessoriesLayout.json +1 -0
  183. package/test/hbConfig/auth.json +10 -0
  184. package/test/hbConfig/backups/config-backups/config.json.1767953686461 +25 -0
  185. package/test/hbConfig/backups/config-backups/config.json.1767953695236 +29 -0
  186. package/test/hbConfig/backups/config-backups/config.json.1767953814763 +29 -0
  187. package/test/hbConfig/backups/config-backups/config.json.1767953823101 +29 -0
  188. package/test/hbConfig/backups/config-backups/config.json.1767954822835 +29 -0
  189. package/test/hbConfig/backups/config-backups/config.json.1767954859218 +29 -0
  190. package/test/hbConfig/config.json +33 -0
  191. package/test/hbConfig/daikin-cloud-certs/server.crt +22 -0
  192. package/test/hbConfig/daikin-cloud-certs/server.key +28 -0
  193. package/test/hbConfig/persist/AccessoryInfo.1E4A432551BA.json +1 -0
  194. package/test/hbConfig/persist/IdentifierCache.1E4A432551BA.json +1 -0
  195. package/test/integration/air-conditioning.test.ts +396 -0
  196. package/test/integration/altherma.test.ts +288 -0
  197. package/test/integration/platform.test.ts +101 -0
  198. package/test/mocks/index.ts +27 -0
  199. package/test/unit/api/__snapshots__/daikinCloud.test.ts.snap +1323 -0
  200. package/test/unit/api/daikinCloud.test.ts +12 -0
  201. package/test/unit/device/daikin-device.test.ts +29 -0
  202. package/test/unit/services/hot-water-tank.service.test.ts +107 -0
@@ -0,0 +1,2544 @@
1
+ [
2
+ {
3
+ "_id": "10b029e7-484c-4519-b22e-c14be4b7a71c",
4
+ "deviceModel": "Altherma",
5
+ "type": "heating-wlan",
6
+ "isCloudConnectionUp": {
7
+ "settable": false,
8
+ "value": true
9
+ },
10
+ "managementPoints": [
11
+ {
12
+ "embeddedId": "gateway",
13
+ "managementPointType": "gateway",
14
+ "managementPointCategory": "secondary",
15
+ "firmwareVersion": {
16
+ "settable": false,
17
+ "value": "3.2.4",
18
+ "maxLength": 8
19
+ },
20
+ "ipAddress": {
21
+ "settable": false,
22
+ "value": "192.168.1.10",
23
+ "maxLength": 15
24
+ },
25
+ "iconId": {
26
+ "settable": true,
27
+ "requiresReboot": false,
28
+ "value": 3
29
+ },
30
+ "isFirmwareUpdateSupported": {
31
+ "settable": false,
32
+ "requiresReboot": false,
33
+ "value": true
34
+ },
35
+ "macAddress": {
36
+ "settable": false,
37
+ "value": "48:e7:da:01:c6:08",
38
+ "maxLength": 17
39
+ },
40
+ "modelInfo": {
41
+ "settable": false,
42
+ "value": "BRP069A78",
43
+ "maxLength": 9
44
+ },
45
+ "name": {
46
+ "settable": true,
47
+ "requiresReboot": false,
48
+ "value": "Gateway",
49
+ "maxLength": 63
50
+ },
51
+ "ssid": {
52
+ "settable": false,
53
+ "requiresReboot": false,
54
+ "value": "daikin-ap",
55
+ "maxLength": 9
56
+ },
57
+ "serialNumber": {
58
+ "settable": false,
59
+ "value": "0060691",
60
+ "maxLength": 16
61
+ },
62
+ "wifiConnectionSSID": {
63
+ "settable": false,
64
+ "requiresReboot": false,
65
+ "value": "Proximus-Home-B7B0",
66
+ "maxLength": 32
67
+ },
68
+ "wifiConnectionStrength": {
69
+ "settable": false,
70
+ "requiresReboot": false,
71
+ "value": -29,
72
+ "maxValue": 0,
73
+ "minValue": -90,
74
+ "stepValue": 1
75
+ }
76
+ },
77
+ {
78
+ "embeddedId": "climateControlMainZone",
79
+ "managementPointType": "climateControl",
80
+ "managementPointCategory": "primary",
81
+ "managementPointSubType": "mainZone",
82
+ "consumptionData": {
83
+ "settable": false,
84
+ "requiresReboot": false,
85
+ "ref": "#consumptionData",
86
+ "value": {
87
+ "electrical": {
88
+ "heating": {
89
+ "d": [
90
+ 2,
91
+ 0,
92
+ 0,
93
+ 1,
94
+ 4,
95
+ 2,
96
+ 0,
97
+ 0,
98
+ 0,
99
+ 0,
100
+ 4,
101
+ 2,
102
+ 0,
103
+ 0,
104
+ 0,
105
+ 4,
106
+ 2,
107
+ 1,
108
+ 0,
109
+ 0,
110
+ 1,
111
+ null,
112
+ null,
113
+ null
114
+ ],
115
+ "w": [
116
+ 14,
117
+ 11,
118
+ 19,
119
+ 13,
120
+ 25,
121
+ 15,
122
+ 12,
123
+ 15,
124
+ 8,
125
+ null,
126
+ null,
127
+ null,
128
+ null,
129
+ null
130
+ ],
131
+ "m": [
132
+ null,
133
+ null,
134
+ 228,
135
+ 273,
136
+ 28,
137
+ 21,
138
+ 0,
139
+ 0,
140
+ 48,
141
+ 96,
142
+ 220,
143
+ 565,
144
+ 437,
145
+ 320,
146
+ 107,
147
+ null,
148
+ null,
149
+ null,
150
+ null,
151
+ null,
152
+ null,
153
+ null,
154
+ null,
155
+ null
156
+ ]
157
+ }
158
+ }
159
+ }
160
+ },
161
+ "controlMode": {
162
+ "settable": false,
163
+ "requiresReboot": false,
164
+ "value": "roomTemperature",
165
+ "values": [
166
+ "leavingWaterTemperature",
167
+ "externalRoomTemperature",
168
+ "roomTemperature"
169
+ ]
170
+ },
171
+ "errorCode": {
172
+ "settable": false,
173
+ "requiresReboot": false,
174
+ "value": "",
175
+ "maxLength": 16
176
+ },
177
+ "holidayMode": {
178
+ "settable": true,
179
+ "requiresReboot": false,
180
+ "ref": "#holidayMode",
181
+ "value": {
182
+ "enabled": false,
183
+ "startDate": "2017-01-01",
184
+ "endDate": "2017-01-01"
185
+ }
186
+ },
187
+ "iconId": {
188
+ "settable": true,
189
+ "requiresReboot": false,
190
+ "value": 8
191
+ },
192
+ "isHolidayModeActive": {
193
+ "settable": false,
194
+ "requiresReboot": false,
195
+ "value": false
196
+ },
197
+ "isInEmergencyState": {
198
+ "settable": false,
199
+ "requiresReboot": false,
200
+ "value": false
201
+ },
202
+ "isInErrorState": {
203
+ "settable": false,
204
+ "requiresReboot": false,
205
+ "value": false
206
+ },
207
+ "isInInstallerState": {
208
+ "settable": false,
209
+ "requiresReboot": false,
210
+ "value": false
211
+ },
212
+ "isInWarningState": {
213
+ "settable": false,
214
+ "requiresReboot": false,
215
+ "value": false
216
+ },
217
+ "name": {
218
+ "settable": true,
219
+ "requiresReboot": false,
220
+ "value": "Altherma",
221
+ "maxLength": 63
222
+ },
223
+ "onOffMode": {
224
+ "settable": true,
225
+ "requiresReboot": false,
226
+ "value": "on",
227
+ "values": [
228
+ "off",
229
+ "on"
230
+ ]
231
+ },
232
+ "operationMode": {
233
+ "settable": false,
234
+ "requiresReboot": false,
235
+ "value": "heating",
236
+ "values": [
237
+ "heating"
238
+ ]
239
+ },
240
+ "schedule": {
241
+ "settable": true,
242
+ "ref": "#schedule",
243
+ "value": {
244
+ "currentMode": {
245
+ "settable": false,
246
+ "value": "heating",
247
+ "values": [
248
+ "heating"
249
+ ]
250
+ },
251
+ "modes": {
252
+ "heating": {
253
+ "enabled": {
254
+ "settable": true,
255
+ "requiresReboot": false,
256
+ "value": true
257
+ },
258
+ "currentSchedule": {
259
+ "settable": true,
260
+ "requiresReboot": false,
261
+ "value": "scheduleHeatingRT1",
262
+ "values": [
263
+ "scheduleHeatingRT1",
264
+ "scheduleHeatingRT2",
265
+ "scheduleHeatingRT3"
266
+ ]
267
+ },
268
+ "meta": {
269
+ "minIntervalBetweenActions": "00:10:00",
270
+ "maxSchedules": 3,
271
+ "maxActionsPerActionPeriod": 6,
272
+ "consecutiveActionsAllowed": true,
273
+ "actionTypes": {
274
+ "roomTemperature": {
275
+ "settable": false,
276
+ "maxValue": 30,
277
+ "minValue": 12,
278
+ "stepValue": 1
279
+ }
280
+ }
281
+ },
282
+ "schedules": {
283
+ "scheduleHeatingRT1": {
284
+ "settable": true,
285
+ "name": {
286
+ "settable": true,
287
+ "requiresReboot": false,
288
+ "value": "User defined 1"
289
+ },
290
+ "meta": {
291
+ "isReadOnly": false,
292
+ "actionPeriods": [
293
+ "monday",
294
+ "tuesday",
295
+ "wednesday",
296
+ "thursday",
297
+ "friday",
298
+ "saturday",
299
+ "sunday"
300
+ ]
301
+ },
302
+ "actions": {}
303
+ },
304
+ "scheduleHeatingRT2": {
305
+ "settable": true,
306
+ "name": {
307
+ "settable": true,
308
+ "requiresReboot": false,
309
+ "value": "User defined 2"
310
+ },
311
+ "meta": {
312
+ "isReadOnly": false,
313
+ "actionPeriods": [
314
+ "monday",
315
+ "tuesday",
316
+ "wednesday",
317
+ "thursday",
318
+ "friday",
319
+ "saturday",
320
+ "sunday"
321
+ ]
322
+ },
323
+ "actions": {}
324
+ },
325
+ "scheduleHeatingRT3": {
326
+ "settable": true,
327
+ "name": {
328
+ "settable": true,
329
+ "requiresReboot": false,
330
+ "value": "User defined 3"
331
+ },
332
+ "meta": {
333
+ "isReadOnly": false,
334
+ "actionPeriods": [
335
+ "monday",
336
+ "tuesday",
337
+ "wednesday",
338
+ "thursday",
339
+ "friday",
340
+ "saturday",
341
+ "sunday"
342
+ ]
343
+ },
344
+ "actions": {}
345
+ }
346
+ }
347
+ }
348
+ }
349
+ }
350
+ },
351
+ "sensoryData": {
352
+ "settable": false,
353
+ "ref": "#sensoryData",
354
+ "value": {
355
+ "roomTemperature": {
356
+ "settable": false,
357
+ "requiresReboot": false,
358
+ "value": 22.4,
359
+ "maxValue": 127,
360
+ "minValue": -127,
361
+ "stepValue": 0.1
362
+ },
363
+ "outdoorTemperature": {
364
+ "settable": false,
365
+ "requiresReboot": false,
366
+ "value": 4,
367
+ "maxValue": 127,
368
+ "minValue": -127,
369
+ "stepValue": 1
370
+ },
371
+ "leavingWaterTemperature": {
372
+ "settable": false,
373
+ "requiresReboot": false,
374
+ "value": 35,
375
+ "maxValue": 127,
376
+ "minValue": -127,
377
+ "stepValue": 1
378
+ }
379
+ }
380
+ },
381
+ "setpointMode": {
382
+ "settable": false,
383
+ "requiresReboot": true,
384
+ "value": "weatherDependent",
385
+ "values": [
386
+ "fixed",
387
+ "weatherDependent"
388
+ ]
389
+ },
390
+ "temperatureControl": {
391
+ "settable": true,
392
+ "ref": "#temperatureControl",
393
+ "value": {
394
+ "operationModes": {
395
+ "auto": {
396
+ "setpoints": {
397
+ "roomTemperature": {
398
+ "settable": true,
399
+ "requiresReboot": false,
400
+ "value": 22,
401
+ "maxValue": 30,
402
+ "minValue": 12,
403
+ "stepValue": 0.5
404
+ },
405
+ "leavingWaterOffset": {
406
+ "settable": true,
407
+ "requiresReboot": false,
408
+ "value": 0,
409
+ "maxValue": 10,
410
+ "minValue": -10,
411
+ "stepValue": 1
412
+ }
413
+ }
414
+ },
415
+ "heating": {
416
+ "setpoints": {
417
+ "roomTemperature": {
418
+ "settable": true,
419
+ "requiresReboot": false,
420
+ "value": 22,
421
+ "maxValue": 30,
422
+ "minValue": 12,
423
+ "stepValue": 0.5
424
+ },
425
+ "leavingWaterOffset": {
426
+ "settable": true,
427
+ "requiresReboot": false,
428
+ "value": 0,
429
+ "maxValue": 10,
430
+ "minValue": -10,
431
+ "stepValue": 1
432
+ }
433
+ }
434
+ },
435
+ "cooling": {
436
+ "setpoints": {}
437
+ }
438
+ }
439
+ }
440
+ }
441
+ },
442
+ {
443
+ "embeddedId": "domesticHotWaterTank",
444
+ "managementPointType": "domesticHotWaterTank",
445
+ "managementPointCategory": "primary",
446
+ "consumptionData": {
447
+ "settable": false,
448
+ "requiresReboot": false,
449
+ "ref": "#consumptionData",
450
+ "value": {
451
+ "electrical": {
452
+ "heating": {
453
+ "d": [
454
+ 0,
455
+ 0,
456
+ 0,
457
+ 0,
458
+ 0,
459
+ 0,
460
+ 0,
461
+ 1,
462
+ 1,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0,
468
+ 0,
469
+ 0,
470
+ 0,
471
+ 0,
472
+ 0,
473
+ 0,
474
+ 1,
475
+ null,
476
+ null,
477
+ null
478
+ ],
479
+ "w": [
480
+ 2,
481
+ 2,
482
+ 2,
483
+ 1,
484
+ 0,
485
+ 1,
486
+ 2,
487
+ 2,
488
+ 1,
489
+ null,
490
+ null,
491
+ null,
492
+ null,
493
+ null
494
+ ],
495
+ "m": [
496
+ null,
497
+ null,
498
+ 15,
499
+ 23,
500
+ 22,
501
+ 23,
502
+ 22,
503
+ 17,
504
+ 20,
505
+ 23,
506
+ 25,
507
+ 36,
508
+ 38,
509
+ 36,
510
+ 9,
511
+ null,
512
+ null,
513
+ null,
514
+ null,
515
+ null,
516
+ null,
517
+ null,
518
+ null,
519
+ null
520
+ ]
521
+ }
522
+ }
523
+ }
524
+ },
525
+ "errorCode": {
526
+ "settable": false,
527
+ "requiresReboot": false,
528
+ "value": "",
529
+ "maxLength": 16
530
+ },
531
+ "heatupMode": {
532
+ "settable": false,
533
+ "requiresReboot": true,
534
+ "value": "reheatOnly",
535
+ "values": [
536
+ "reheatOnly",
537
+ "reheatSchedule",
538
+ "scheduleOnly"
539
+ ]
540
+ },
541
+ "iconId": {
542
+ "settable": true,
543
+ "requiresReboot": false,
544
+ "value": 9
545
+ },
546
+ "isHolidayModeActive": {
547
+ "settable": false,
548
+ "requiresReboot": false,
549
+ "value": false
550
+ },
551
+ "isInEmergencyState": {
552
+ "settable": false,
553
+ "requiresReboot": false,
554
+ "value": false
555
+ },
556
+ "isInErrorState": {
557
+ "settable": false,
558
+ "requiresReboot": false,
559
+ "value": false
560
+ },
561
+ "isInInstallerState": {
562
+ "settable": false,
563
+ "requiresReboot": false,
564
+ "value": false
565
+ },
566
+ "isInWarningState": {
567
+ "settable": false,
568
+ "requiresReboot": false,
569
+ "value": false
570
+ },
571
+ "isPowerfulModeActive": {
572
+ "settable": false,
573
+ "requiresReboot": false,
574
+ "value": false
575
+ },
576
+ "name": {
577
+ "settable": true,
578
+ "requiresReboot": false,
579
+ "value": "",
580
+ "maxLength": 63
581
+ },
582
+ "onOffMode": {
583
+ "settable": true,
584
+ "requiresReboot": false,
585
+ "value": "on",
586
+ "values": [
587
+ "off",
588
+ "on"
589
+ ]
590
+ },
591
+ "operationMode": {
592
+ "settable": false,
593
+ "value": "heating",
594
+ "values": [
595
+ "heating"
596
+ ]
597
+ },
598
+ "powerfulMode": {
599
+ "settable": true,
600
+ "requiresReboot": false,
601
+ "value": "off",
602
+ "values": [
603
+ "off",
604
+ "on"
605
+ ]
606
+ },
607
+ "sensoryData": {
608
+ "settable": false,
609
+ "ref": "#sensoryData",
610
+ "value": {
611
+ "tankTemperature": {
612
+ "settable": false,
613
+ "requiresReboot": false,
614
+ "value": 48,
615
+ "maxValue": 127,
616
+ "minValue": -127,
617
+ "stepValue": 1
618
+ }
619
+ }
620
+ },
621
+ "setpointMode": {
622
+ "settable": false,
623
+ "requiresReboot": false,
624
+ "value": "fixed",
625
+ "values": [
626
+ "fixed",
627
+ "weatherDependent"
628
+ ]
629
+ },
630
+ "temperatureControl": {
631
+ "settable": true,
632
+ "ref": "#temperatureControl",
633
+ "value": {
634
+ "operationModes": {
635
+ "heating": {
636
+ "setpoints": {
637
+ "domesticHotWaterTemperature": {
638
+ "settable": true,
639
+ "requiresReboot": false,
640
+ "value": 48,
641
+ "maxValue": 60,
642
+ "minValue": 30,
643
+ "stepValue": 1
644
+ }
645
+ }
646
+ }
647
+ }
648
+ }
649
+ }
650
+ },
651
+ {
652
+ "embeddedId": "indoorUnitHydro",
653
+ "managementPointType": "indoorUnitHydro",
654
+ "managementPointCategory": "secondary",
655
+ "eepromVersion": {
656
+ "settable": false,
657
+ "requiresReboot": false,
658
+ "value": "3608726-66C",
659
+ "maxLength": 16
660
+ },
661
+ "iconId": {
662
+ "settable": true,
663
+ "requiresReboot": false,
664
+ "value": 4
665
+ },
666
+ "modelInfo": {
667
+ "settable": false,
668
+ "requiresReboot": false,
669
+ "value": "EHVH08S23EJ9W",
670
+ "maxLength": 16
671
+ },
672
+ "name": {
673
+ "settable": true,
674
+ "requiresReboot": false,
675
+ "value": "Indoor Hydro Unit",
676
+ "maxLength": 63
677
+ },
678
+ "softwareVersion": {
679
+ "settable": false,
680
+ "requiresReboot": false,
681
+ "value": "0222",
682
+ "maxLength": 16
683
+ }
684
+ },
685
+ {
686
+ "embeddedId": "outdoorUnit",
687
+ "managementPointType": "outdoorUnit",
688
+ "managementPointCategory": "secondary",
689
+ "iconId": {
690
+ "settable": true,
691
+ "requiresReboot": false,
692
+ "value": 5
693
+ },
694
+ "name": {
695
+ "settable": true,
696
+ "requiresReboot": false,
697
+ "value": "Outdoor Unit",
698
+ "maxLength": 63
699
+ },
700
+ "softwareVersion": {
701
+ "settable": false,
702
+ "requiresReboot": false,
703
+ "value": "FFFF",
704
+ "maxLength": 16
705
+ }
706
+ },
707
+ {
708
+ "embeddedId": "userInterface",
709
+ "managementPointType": "userInterface",
710
+ "managementPointCategory": "secondary",
711
+ "dateTime": {
712
+ "settable": false,
713
+ "requiresReboot": false,
714
+ "value": "2023-03-07T18:17:27"
715
+ },
716
+ "firmwareVersion": {
717
+ "settable": false,
718
+ "requiresReboot": false,
719
+ "deprecated": "DEPRECATED",
720
+ "value": "6.9.0",
721
+ "maxLength": 16
722
+ },
723
+ "iconId": {
724
+ "settable": true,
725
+ "requiresReboot": false,
726
+ "value": 6
727
+ },
728
+ "miconId": {
729
+ "settable": false,
730
+ "requiresReboot": false,
731
+ "value": "20010E05",
732
+ "maxLength": 16
733
+ },
734
+ "modelInfo": {
735
+ "settable": false,
736
+ "requiresReboot": false,
737
+ "value": "EHVH08S23EJ9W",
738
+ "maxLength": 16
739
+ },
740
+ "name": {
741
+ "settable": true,
742
+ "requiresReboot": false,
743
+ "value": "User Interface",
744
+ "maxLength": 63
745
+ },
746
+ "softwareVersion": {
747
+ "settable": false,
748
+ "requiresReboot": false,
749
+ "value": "6.9.0",
750
+ "maxLength": 16
751
+ }
752
+ }
753
+ ],
754
+ "embeddedId": "e1bac939-1495-4803-a6a3-ca2f9388c8ad",
755
+ "timestamp": "2023-03-07T19:01:39.983Z",
756
+ "id": "10b029e7-484c-4519-b22e-c14be4b7a71c",
757
+ "lastUpdateReceived": "2023-03-07T19:01:39.983Z"
758
+ },
759
+ {
760
+ "_id": "78001793-f434-45bf-8db1-8f606aa6f844",
761
+ "id": "78001793-f434-45bf-8db1-8f606aa6f844",
762
+ "type": "dx23",
763
+ "deviceModel": "dx23",
764
+ "isCloudConnectionUp": {
765
+ "settable": false,
766
+ "value": true
767
+ },
768
+ "managementPoints": [
769
+ {
770
+ "embeddedId": "gateway",
771
+ "managementPointType": "gateway",
772
+ "managementPointCategory": "secondary",
773
+ "name": {
774
+ "settable": false,
775
+ "maxLength": 32,
776
+ "value": "Gateway"
777
+ },
778
+ "iconId": {
779
+ "settable": false,
780
+ "value": 3
781
+ },
782
+ "timeZone": {
783
+ "settable": false,
784
+ "value": "Europe/Brussels"
785
+ },
786
+ "modelInfo": {
787
+ "settable": false,
788
+ "value": "BRP069B4x"
789
+ },
790
+ "ipAddress": {
791
+ "settable": false,
792
+ "value": "192.168.1.11"
793
+ },
794
+ "macAddress": {
795
+ "settable": false,
796
+ "value": "48:e7:da:02:1f:78"
797
+ },
798
+ "regionCode": {
799
+ "settable": false,
800
+ "value": "eu"
801
+ },
802
+ "ledEnabled": {
803
+ "settable": true,
804
+ "value": false
805
+ },
806
+ "firmwareVersion": {
807
+ "settable": false,
808
+ "value": "1_14_78"
809
+ },
810
+ "isFirmwareUpdateSupported": {
811
+ "settable": false,
812
+ "value": false
813
+ },
814
+ "daylightSavingTimeEnabled": {
815
+ "settable": false,
816
+ "value": true
817
+ },
818
+ "ssid": {
819
+ "settable": false,
820
+ "value": "DaikinAP88985"
821
+ },
822
+ "wifiConnectionSSID": {
823
+ "settable": false,
824
+ "value": "Proximus-Home-B7B0"
825
+ },
826
+ "wifiConnectionStrength": {
827
+ "settable": false,
828
+ "value": -48,
829
+ "maxValue": 0,
830
+ "minValue": -90,
831
+ "stepValue": 1
832
+ }
833
+ },
834
+ {
835
+ "embeddedId": "climateControl",
836
+ "managementPointType": "climateControl",
837
+ "managementPointSubType": "mainZone",
838
+ "managementPointCategory": "primary",
839
+ "onOffMode": {
840
+ "settable": true,
841
+ "values": [
842
+ "on",
843
+ "off"
844
+ ],
845
+ "value": "off"
846
+ },
847
+ "name": {
848
+ "settable": true,
849
+ "maxLength": 32,
850
+ "value": "Stylish"
851
+ },
852
+ "iconId": {
853
+ "settable": true,
854
+ "value": 15
855
+ },
856
+ "isHolidayModeActive": {
857
+ "settable": false,
858
+ "value": false
859
+ },
860
+ "isInErrorState": {
861
+ "settable": false,
862
+ "value": false
863
+ },
864
+ "isInModeConflict": {
865
+ "settable": false,
866
+ "value": false
867
+ },
868
+ "errorCode": {
869
+ "settable": false,
870
+ "value": "00"
871
+ },
872
+ "operationMode": {
873
+ "settable": true,
874
+ "values": [
875
+ "auto",
876
+ "dry",
877
+ "cooling",
878
+ "heating",
879
+ "fanOnly"
880
+ ],
881
+ "value": "auto"
882
+ },
883
+ "temperatureControl": {
884
+ "ref": "#temperatureControl",
885
+ "settable": true,
886
+ "value": {
887
+ "operationModes": {
888
+ "auto": {
889
+ "setpoints": {
890
+ "roomTemperature": {
891
+ "settable": true,
892
+ "value": 22,
893
+ "minValue": 18,
894
+ "maxValue": 30,
895
+ "stepValue": 0.5
896
+ }
897
+ }
898
+ },
899
+ "cooling": {
900
+ "setpoints": {
901
+ "roomTemperature": {
902
+ "settable": true,
903
+ "value": 25,
904
+ "minValue": 18,
905
+ "maxValue": 32,
906
+ "stepValue": 0.5
907
+ }
908
+ }
909
+ },
910
+ "heating": {
911
+ "setpoints": {
912
+ "roomTemperature": {
913
+ "settable": true,
914
+ "value": 25,
915
+ "minValue": 10,
916
+ "maxValue": 30,
917
+ "stepValue": 0.5
918
+ }
919
+ }
920
+ }
921
+ }
922
+ }
923
+ },
924
+ "sensoryData": {
925
+ "ref": "#sensoryData",
926
+ "settable": false,
927
+ "value": {
928
+ "roomTemperature": {
929
+ "settable": false,
930
+ "value": 24
931
+ },
932
+ "outdoorTemperature": {
933
+ "settable": false,
934
+ "value": 1
935
+ }
936
+ }
937
+ },
938
+ "fanControl": {
939
+ "ref": "#fanControl",
940
+ "settable": true,
941
+ "value": {
942
+ "operationModes": {
943
+ "auto": {
944
+ "fanDirection": {
945
+ "horizontal": {
946
+ "currentMode": {
947
+ "settable": true,
948
+ "value": "stop",
949
+ "values": [
950
+ "stop",
951
+ "swing"
952
+ ]
953
+ }
954
+ },
955
+ "vertical": {
956
+ "currentMode": {
957
+ "settable": true,
958
+ "value": "swing",
959
+ "values": [
960
+ "stop",
961
+ "swing"
962
+ ]
963
+ }
964
+ }
965
+ },
966
+ "fanSpeed": {
967
+ "currentMode": {
968
+ "settable": true,
969
+ "value": "auto",
970
+ "values": [
971
+ "quiet",
972
+ "auto",
973
+ "fixed"
974
+ ]
975
+ },
976
+ "modes": {
977
+ "fixed": {
978
+ "value": 1,
979
+ "settable": true,
980
+ "maxValue": 5,
981
+ "minValue": 1,
982
+ "stepValue": 1
983
+ }
984
+ }
985
+ }
986
+ },
987
+ "dry": {
988
+ "fanDirection": {
989
+ "horizontal": {
990
+ "currentMode": {
991
+ "settable": true,
992
+ "value": "stop",
993
+ "values": [
994
+ "stop",
995
+ "swing"
996
+ ]
997
+ }
998
+ },
999
+ "vertical": {
1000
+ "currentMode": {
1001
+ "settable": true,
1002
+ "value": "stop",
1003
+ "values": [
1004
+ "stop",
1005
+ "swing"
1006
+ ]
1007
+ }
1008
+ }
1009
+ },
1010
+ "fanSpeed": {
1011
+ "currentMode": {
1012
+ "settable": true,
1013
+ "value": "auto",
1014
+ "values": [
1015
+ "auto"
1016
+ ]
1017
+ }
1018
+ }
1019
+ },
1020
+ "cooling": {
1021
+ "fanDirection": {
1022
+ "horizontal": {
1023
+ "currentMode": {
1024
+ "settable": true,
1025
+ "value": "stop",
1026
+ "values": [
1027
+ "stop",
1028
+ "swing"
1029
+ ]
1030
+ }
1031
+ },
1032
+ "vertical": {
1033
+ "currentMode": {
1034
+ "settable": true,
1035
+ "value": "stop",
1036
+ "values": [
1037
+ "stop",
1038
+ "swing"
1039
+ ]
1040
+ }
1041
+ }
1042
+ },
1043
+ "fanSpeed": {
1044
+ "currentMode": {
1045
+ "settable": true,
1046
+ "value": "fixed",
1047
+ "values": [
1048
+ "quiet",
1049
+ "auto",
1050
+ "fixed"
1051
+ ]
1052
+ },
1053
+ "modes": {
1054
+ "fixed": {
1055
+ "value": 3,
1056
+ "settable": true,
1057
+ "maxValue": 5,
1058
+ "minValue": 1,
1059
+ "stepValue": 1
1060
+ }
1061
+ }
1062
+ }
1063
+ },
1064
+ "heating": {
1065
+ "fanDirection": {
1066
+ "horizontal": {
1067
+ "currentMode": {
1068
+ "settable": true,
1069
+ "value": "stop",
1070
+ "values": [
1071
+ "stop",
1072
+ "swing"
1073
+ ]
1074
+ }
1075
+ },
1076
+ "vertical": {
1077
+ "currentMode": {
1078
+ "settable": true,
1079
+ "value": "stop",
1080
+ "values": [
1081
+ "stop",
1082
+ "swing"
1083
+ ]
1084
+ }
1085
+ }
1086
+ },
1087
+ "fanSpeed": {
1088
+ "currentMode": {
1089
+ "settable": true,
1090
+ "value": "fixed",
1091
+ "values": [
1092
+ "quiet",
1093
+ "auto",
1094
+ "fixed"
1095
+ ]
1096
+ },
1097
+ "modes": {
1098
+ "fixed": {
1099
+ "value": 3,
1100
+ "settable": true,
1101
+ "maxValue": 5,
1102
+ "minValue": 1,
1103
+ "stepValue": 1
1104
+ }
1105
+ }
1106
+ }
1107
+ },
1108
+ "fanOnly": {
1109
+ "fanDirection": {
1110
+ "horizontal": {
1111
+ "currentMode": {
1112
+ "settable": true,
1113
+ "value": "stop",
1114
+ "values": [
1115
+ "stop",
1116
+ "swing"
1117
+ ]
1118
+ }
1119
+ },
1120
+ "vertical": {
1121
+ "currentMode": {
1122
+ "settable": true,
1123
+ "value": "swing",
1124
+ "values": [
1125
+ "stop",
1126
+ "swing"
1127
+ ]
1128
+ }
1129
+ }
1130
+ },
1131
+ "fanSpeed": {
1132
+ "currentMode": {
1133
+ "settable": true,
1134
+ "value": "auto",
1135
+ "values": [
1136
+ "quiet",
1137
+ "auto",
1138
+ "fixed"
1139
+ ]
1140
+ },
1141
+ "modes": {
1142
+ "fixed": {
1143
+ "value": 1,
1144
+ "settable": true,
1145
+ "maxValue": 5,
1146
+ "minValue": 1,
1147
+ "stepValue": 1
1148
+ }
1149
+ }
1150
+ }
1151
+ }
1152
+ }
1153
+ }
1154
+ },
1155
+ "schedule": {
1156
+ "ref": "#schedule",
1157
+ "settable": true,
1158
+ "value": {
1159
+ "currentMode": {
1160
+ "value": "any",
1161
+ "settable": true,
1162
+ "values": [
1163
+ "any"
1164
+ ]
1165
+ },
1166
+ "nextAction": {},
1167
+ "modes": {
1168
+ "any": {
1169
+ "currentSchedule": {
1170
+ "value": "0",
1171
+ "settable": true,
1172
+ "values": [
1173
+ "0",
1174
+ "1",
1175
+ "2"
1176
+ ]
1177
+ },
1178
+ "enabled": {
1179
+ "value": false,
1180
+ "settable": true
1181
+ },
1182
+ "meta": {
1183
+ "minIntervalBetweenActions": "00:01:00",
1184
+ "maxSchedules": 1,
1185
+ "maxActionsPerActionPeriod": 6,
1186
+ "consecutiveActionsAllowed": true,
1187
+ "actionTypes": {
1188
+ "operationMode": {
1189
+ "settable": false,
1190
+ "values": [
1191
+ "auto",
1192
+ "dry",
1193
+ "cooling",
1194
+ "heating",
1195
+ "fanOnly",
1196
+ "off"
1197
+ ]
1198
+ },
1199
+ "roomTemperature": {
1200
+ "auto": {
1201
+ "settable": false,
1202
+ "stepValue": 0.5,
1203
+ "minValue": 18,
1204
+ "maxValue": 30
1205
+ },
1206
+ "cooling": {
1207
+ "settable": false,
1208
+ "stepValue": 0.5,
1209
+ "minValue": 18,
1210
+ "maxValue": 32
1211
+ },
1212
+ "heating": {
1213
+ "settable": false,
1214
+ "stepValue": 0.5,
1215
+ "minValue": 10,
1216
+ "maxValue": 30
1217
+ }
1218
+ },
1219
+ "fanSpeed": {
1220
+ "auto": {
1221
+ "currentMode": {
1222
+ "values": [
1223
+ "quiet",
1224
+ "auto",
1225
+ "fixed"
1226
+ ],
1227
+ "settable": false
1228
+ },
1229
+ "modes": {
1230
+ "fixed": {
1231
+ "settable": false,
1232
+ "maxValue": 5,
1233
+ "minValue": 1,
1234
+ "stepValue": 1
1235
+ }
1236
+ }
1237
+ },
1238
+ "dry": {
1239
+ "currentMode": {
1240
+ "values": [
1241
+ "auto"
1242
+ ],
1243
+ "settable": false
1244
+ }
1245
+ },
1246
+ "cooling": {
1247
+ "currentMode": {
1248
+ "values": [
1249
+ "quiet",
1250
+ "auto",
1251
+ "fixed"
1252
+ ],
1253
+ "settable": false
1254
+ },
1255
+ "modes": {
1256
+ "fixed": {
1257
+ "settable": false,
1258
+ "maxValue": 5,
1259
+ "minValue": 1,
1260
+ "stepValue": 1
1261
+ }
1262
+ }
1263
+ },
1264
+ "heating": {
1265
+ "currentMode": {
1266
+ "values": [
1267
+ "quiet",
1268
+ "auto",
1269
+ "fixed"
1270
+ ],
1271
+ "settable": false
1272
+ },
1273
+ "modes": {
1274
+ "fixed": {
1275
+ "settable": false,
1276
+ "maxValue": 5,
1277
+ "minValue": 1,
1278
+ "stepValue": 1
1279
+ }
1280
+ }
1281
+ },
1282
+ "fanOnly": {
1283
+ "currentMode": {
1284
+ "values": [
1285
+ "quiet",
1286
+ "auto",
1287
+ "fixed"
1288
+ ],
1289
+ "settable": false
1290
+ },
1291
+ "modes": {
1292
+ "fixed": {
1293
+ "settable": false,
1294
+ "maxValue": 5,
1295
+ "minValue": 1,
1296
+ "stepValue": 1
1297
+ }
1298
+ }
1299
+ }
1300
+ }
1301
+ }
1302
+ },
1303
+ "schedules": {
1304
+ "0": {
1305
+ "name": {
1306
+ "settable": true,
1307
+ "value": "",
1308
+ "maxLength": 32
1309
+ },
1310
+ "meta": {
1311
+ "isReadOnly": false,
1312
+ "actionPeriods": [
1313
+ "monday",
1314
+ "tuesday",
1315
+ "wednesday",
1316
+ "thursday",
1317
+ "friday",
1318
+ "saturday",
1319
+ "sunday"
1320
+ ]
1321
+ },
1322
+ "actions": {},
1323
+ "settable": true
1324
+ },
1325
+ "1": {
1326
+ "name": {
1327
+ "settable": true,
1328
+ "value": "",
1329
+ "maxLength": 32
1330
+ },
1331
+ "meta": {
1332
+ "isReadOnly": false,
1333
+ "actionPeriods": [
1334
+ "monday",
1335
+ "tuesday",
1336
+ "wednesday",
1337
+ "thursday",
1338
+ "friday",
1339
+ "saturday",
1340
+ "sunday"
1341
+ ]
1342
+ },
1343
+ "actions": {},
1344
+ "settable": true
1345
+ },
1346
+ "2": {
1347
+ "name": {
1348
+ "settable": true,
1349
+ "value": "",
1350
+ "maxLength": 32
1351
+ },
1352
+ "meta": {
1353
+ "isReadOnly": false,
1354
+ "actionPeriods": [
1355
+ "monday",
1356
+ "tuesday",
1357
+ "wednesday",
1358
+ "thursday",
1359
+ "friday",
1360
+ "saturday",
1361
+ "sunday"
1362
+ ]
1363
+ },
1364
+ "actions": {},
1365
+ "settable": true
1366
+ }
1367
+ }
1368
+ }
1369
+ }
1370
+ }
1371
+ },
1372
+ "isPowerfulModeActive": {
1373
+ "settable": false,
1374
+ "value": false
1375
+ },
1376
+ "powerfulMode": {
1377
+ "settable": true,
1378
+ "values": [
1379
+ "on",
1380
+ "off"
1381
+ ],
1382
+ "value": "off"
1383
+ },
1384
+ "streamerMode": {
1385
+ "settable": true,
1386
+ "values": [
1387
+ "off",
1388
+ "on"
1389
+ ],
1390
+ "value": "off"
1391
+ },
1392
+ "consumptionData": {
1393
+ "ref": "#consumptionData",
1394
+ "settable": false,
1395
+ "value": {
1396
+ "electrical": {
1397
+ "unit": "kWh",
1398
+ "heating": {
1399
+ "d": [
1400
+ 0,
1401
+ 0,
1402
+ 0,
1403
+ 0,
1404
+ 0,
1405
+ 0,
1406
+ 0,
1407
+ 0,
1408
+ 0,
1409
+ 0,
1410
+ 0,
1411
+ 0,
1412
+ 0,
1413
+ 0,
1414
+ 0,
1415
+ 0,
1416
+ 0,
1417
+ 0,
1418
+ 0,
1419
+ 0,
1420
+ 0,
1421
+ 0,
1422
+ 0,
1423
+ 0
1424
+ ],
1425
+ "w": [
1426
+ 0,
1427
+ 0,
1428
+ 0,
1429
+ 0,
1430
+ 0,
1431
+ 0,
1432
+ 0,
1433
+ 0,
1434
+ 0,
1435
+ null,
1436
+ null,
1437
+ null,
1438
+ null,
1439
+ null
1440
+ ],
1441
+ "m": [
1442
+ 0,
1443
+ 0,
1444
+ 0,
1445
+ 0,
1446
+ 0,
1447
+ 0,
1448
+ 0,
1449
+ 0,
1450
+ 0,
1451
+ 0,
1452
+ 0,
1453
+ 0.3,
1454
+ 0,
1455
+ 0,
1456
+ 0,
1457
+ 0,
1458
+ 0,
1459
+ 0,
1460
+ 0,
1461
+ 0,
1462
+ 0,
1463
+ 0,
1464
+ 0,
1465
+ 0
1466
+ ]
1467
+ },
1468
+ "cooling": {
1469
+ "d": [
1470
+ 0,
1471
+ 0,
1472
+ 0,
1473
+ 0,
1474
+ 0,
1475
+ 0,
1476
+ 0,
1477
+ 0,
1478
+ 0,
1479
+ 0.1,
1480
+ 0,
1481
+ 0,
1482
+ 0,
1483
+ 0,
1484
+ 0,
1485
+ 0,
1486
+ 0,
1487
+ 0,
1488
+ 0,
1489
+ 0.1,
1490
+ 0,
1491
+ 0,
1492
+ 0,
1493
+ 0
1494
+ ],
1495
+ "w": [
1496
+ 0.1,
1497
+ 0.2,
1498
+ 0.1,
1499
+ 0.1,
1500
+ 0.1,
1501
+ 0.1,
1502
+ 0.2,
1503
+ 0.1,
1504
+ 0.1,
1505
+ null,
1506
+ null,
1507
+ null,
1508
+ null,
1509
+ null
1510
+ ],
1511
+ "m": [
1512
+ 0,
1513
+ 0,
1514
+ 0,
1515
+ 0,
1516
+ 0,
1517
+ 0,
1518
+ 1.5,
1519
+ 8.7,
1520
+ 3.5,
1521
+ 3.8,
1522
+ 3.6,
1523
+ 3.8,
1524
+ 3.7,
1525
+ 3.4,
1526
+ 0.8,
1527
+ 0,
1528
+ 0,
1529
+ 0,
1530
+ 0,
1531
+ 0,
1532
+ 0,
1533
+ 0,
1534
+ 0,
1535
+ 0
1536
+ ]
1537
+ }
1538
+ }
1539
+ }
1540
+ },
1541
+ "holidayMode": {
1542
+ "ref": "#holidayMode",
1543
+ "settable": true,
1544
+ "value": {
1545
+ "enabled": false
1546
+ }
1547
+ },
1548
+ "demandControl": {
1549
+ "ref": "#demandControl",
1550
+ "settable": true,
1551
+ "value": {
1552
+ "currentMode": {
1553
+ "value": "off",
1554
+ "settable": true,
1555
+ "values": [
1556
+ "off",
1557
+ "auto",
1558
+ "fixed",
1559
+ "scheduled"
1560
+ ]
1561
+ },
1562
+ "modes": {
1563
+ "fixed": {
1564
+ "stepValue": 5,
1565
+ "value": 100,
1566
+ "minValue": 40,
1567
+ "maxValue": 100,
1568
+ "settable": true
1569
+ },
1570
+ "scheduled": {
1571
+ "settable": true,
1572
+ "meta": {
1573
+ "minIntervalBetweenActions": "00:01:00",
1574
+ "maxActionsPerActionPeriod": 4,
1575
+ "consecutiveActionsAllowed": true,
1576
+ "actionPeriods": [
1577
+ "monday",
1578
+ "tuesday",
1579
+ "wednesday",
1580
+ "thursday",
1581
+ "friday",
1582
+ "saturday",
1583
+ "sunday"
1584
+ ],
1585
+ "actionTypes": {
1586
+ "currentMode": {
1587
+ "settable": true,
1588
+ "values": [
1589
+ "off",
1590
+ "fixed"
1591
+ ]
1592
+ },
1593
+ "modes": {
1594
+ "fixed": {
1595
+ "stepValue": 5,
1596
+ "minValue": 40,
1597
+ "maxValue": 100,
1598
+ "settable": true
1599
+ }
1600
+ }
1601
+ }
1602
+ },
1603
+ "value": {
1604
+ "actions": {}
1605
+ }
1606
+ }
1607
+ }
1608
+ }
1609
+ }
1610
+ },
1611
+ {
1612
+ "embeddedId": "indoorUnit",
1613
+ "managementPointType": "indoorUnit",
1614
+ "managementPointCategory": "secondary",
1615
+ "name": {
1616
+ "settable": false,
1617
+ "maxLength": 32,
1618
+ "value": "Indoor Unit"
1619
+ },
1620
+ "iconId": {
1621
+ "settable": false,
1622
+ "value": 4
1623
+ },
1624
+ "softwareVersion": {
1625
+ "settable": false,
1626
+ "value": "3.30"
1627
+ }
1628
+ }
1629
+ ],
1630
+ "embeddedId": "2eb41416-9559-4e0e-9bfa-b63630a172d1",
1631
+ "timestamp": "2023-03-07T18:57:22.238Z",
1632
+ "lastUpdateReceived": "2023-03-07T18:57:22.238Z"
1633
+ },
1634
+ {
1635
+ "_id": "fa8397fe-b23f-465b-b8b9-90bf15f565fa",
1636
+ "type": "dx4",
1637
+ "deviceModel": "dx4",
1638
+ "isCloudConnectionUp": {
1639
+ "settable": false,
1640
+ "value": true
1641
+ },
1642
+ "managementPoints": [
1643
+ {
1644
+ "embeddedId": "gateway",
1645
+ "managementPointType": "gateway",
1646
+ "managementPointCategory": "secondary",
1647
+ "daylightSavingTimeEnabled": {
1648
+ "settable": true,
1649
+ "value": true
1650
+ },
1651
+ "errorCode": {
1652
+ "settable": false,
1653
+ "value": ""
1654
+ },
1655
+ "firmwareVersion": {
1656
+ "settable": false,
1657
+ "value": "1_23_0"
1658
+ },
1659
+ "isFirmwareUpdateSupported": {
1660
+ "settable": false,
1661
+ "value": false
1662
+ },
1663
+ "isInErrorState": {
1664
+ "settable": false,
1665
+ "value": false
1666
+ },
1667
+ "ledEnabled": {
1668
+ "settable": true,
1669
+ "value": false
1670
+ },
1671
+ "macAddress": {
1672
+ "settable": false,
1673
+ "value": "04:c4:61:c0:e0:8c"
1674
+ },
1675
+ "modelInfo": {
1676
+ "settable": false,
1677
+ "value": "BRP069C4x"
1678
+ },
1679
+ "regionCode": {
1680
+ "settable": false,
1681
+ "value": "eu"
1682
+ },
1683
+ "serialNumber": {
1684
+ "settable": false,
1685
+ "value": "0000000004779266"
1686
+ },
1687
+ "ssid": {
1688
+ "settable": false,
1689
+ "value": "DaikinAP55656"
1690
+ },
1691
+ "timeZone": {
1692
+ "settable": true,
1693
+ "value": "Europe/Brussels"
1694
+ },
1695
+ "wifiConnectionSSID": {
1696
+ "settable": false,
1697
+ "value": "TP-Link_7C88"
1698
+ },
1699
+ "wifiConnectionStrength": {
1700
+ "settable": false,
1701
+ "value": -44,
1702
+ "maxValue": 0,
1703
+ "minValue": -90,
1704
+ "stepValue": 1
1705
+ }
1706
+ },
1707
+ {
1708
+ "embeddedId": "climateControl",
1709
+ "managementPointType": "climateControl",
1710
+ "managementPointSubType": "mainZone",
1711
+ "managementPointCategory": "primary",
1712
+ "consumptionData": {
1713
+ "ref": "#consumptionData",
1714
+ "settable": false,
1715
+ "value": {
1716
+ "electrical": {
1717
+ "unit": "kWh",
1718
+ "heating": {
1719
+ "d": [
1720
+ 0,
1721
+ 0,
1722
+ 0,
1723
+ 0,
1724
+ 0,
1725
+ 0,
1726
+ 0,
1727
+ 0,
1728
+ 0,
1729
+ 0,
1730
+ 0,
1731
+ 0,
1732
+ 0,
1733
+ 0,
1734
+ 0,
1735
+ 0,
1736
+ 0,
1737
+ 0,
1738
+ 0,
1739
+ 0,
1740
+ 0,
1741
+ 0,
1742
+ 0,
1743
+ 0
1744
+ ],
1745
+ "w": [
1746
+ 0,
1747
+ 0,
1748
+ 0,
1749
+ 0,
1750
+ 0,
1751
+ 0,
1752
+ 0,
1753
+ 0,
1754
+ 0,
1755
+ null,
1756
+ null,
1757
+ null,
1758
+ null,
1759
+ null
1760
+ ],
1761
+ "m": [
1762
+ 0,
1763
+ 0,
1764
+ 0,
1765
+ 0,
1766
+ 0,
1767
+ 0,
1768
+ 0,
1769
+ 0,
1770
+ 0,
1771
+ 0,
1772
+ 0,
1773
+ 0.5,
1774
+ 0,
1775
+ 0,
1776
+ 0,
1777
+ 0,
1778
+ 0,
1779
+ 0,
1780
+ 0,
1781
+ 0,
1782
+ 0,
1783
+ 0,
1784
+ 0,
1785
+ 0
1786
+ ]
1787
+ },
1788
+ "cooling": {
1789
+ "d": [
1790
+ 0,
1791
+ 0,
1792
+ 0,
1793
+ 0,
1794
+ 0,
1795
+ 0,
1796
+ 0,
1797
+ 0,
1798
+ 0.1,
1799
+ 0,
1800
+ 0,
1801
+ 0,
1802
+ 0,
1803
+ 0,
1804
+ 0,
1805
+ 0,
1806
+ 0,
1807
+ 0,
1808
+ 0.1,
1809
+ 0,
1810
+ 0,
1811
+ 0,
1812
+ 0,
1813
+ 0
1814
+ ],
1815
+ "w": [
1816
+ 0.1,
1817
+ 0.2,
1818
+ 0.1,
1819
+ 0.1,
1820
+ 0.1,
1821
+ 0.1,
1822
+ 0.2,
1823
+ 0.1,
1824
+ 0.1,
1825
+ null,
1826
+ null,
1827
+ null,
1828
+ null,
1829
+ null
1830
+ ],
1831
+ "m": [
1832
+ 0,
1833
+ 0,
1834
+ 0,
1835
+ 0,
1836
+ 0,
1837
+ 0,
1838
+ 1.4,
1839
+ 5.7,
1840
+ 3.5,
1841
+ 3.8,
1842
+ 3.6,
1843
+ 3.8,
1844
+ 3.7,
1845
+ 3.4,
1846
+ 0.8,
1847
+ 0,
1848
+ 0,
1849
+ 0,
1850
+ 0,
1851
+ 0,
1852
+ 0,
1853
+ 0,
1854
+ 0,
1855
+ 0
1856
+ ]
1857
+ }
1858
+ }
1859
+ }
1860
+ },
1861
+ "demandControl": {
1862
+ "ref": "#demandControl",
1863
+ "settable": true,
1864
+ "value": {
1865
+ "currentMode": {
1866
+ "value": "off",
1867
+ "settable": true,
1868
+ "values": [
1869
+ "off",
1870
+ "auto",
1871
+ "fixed",
1872
+ "scheduled"
1873
+ ]
1874
+ },
1875
+ "modes": {
1876
+ "fixed": {
1877
+ "stepValue": 5,
1878
+ "value": 100,
1879
+ "minValue": 40,
1880
+ "maxValue": 100,
1881
+ "settable": true
1882
+ },
1883
+ "scheduled": {
1884
+ "settable": true,
1885
+ "meta": {
1886
+ "minIntervalBetweenActions": "00:01:00",
1887
+ "maxActionsPerActionPeriod": 4,
1888
+ "consecutiveActionsAllowed": true,
1889
+ "actionPeriods": [
1890
+ "monday",
1891
+ "tuesday",
1892
+ "wednesday",
1893
+ "thursday",
1894
+ "friday",
1895
+ "saturday",
1896
+ "sunday"
1897
+ ],
1898
+ "actionTypes": {
1899
+ "currentMode": {
1900
+ "settable": true,
1901
+ "values": [
1902
+ "off",
1903
+ "fixed"
1904
+ ]
1905
+ },
1906
+ "modes": {
1907
+ "fixed": {
1908
+ "stepValue": 5,
1909
+ "minValue": 40,
1910
+ "maxValue": 100,
1911
+ "settable": true
1912
+ }
1913
+ }
1914
+ }
1915
+ },
1916
+ "value": {
1917
+ "actions": {}
1918
+ }
1919
+ }
1920
+ }
1921
+ }
1922
+ },
1923
+ "econoMode": {
1924
+ "settable": true,
1925
+ "values": [
1926
+ "on",
1927
+ "off"
1928
+ ],
1929
+ "value": "off"
1930
+ },
1931
+ "errorCode": {
1932
+ "settable": false,
1933
+ "value": "A5-"
1934
+ },
1935
+ "fanControl": {
1936
+ "ref": "#fanControl",
1937
+ "settable": true,
1938
+ "value": {
1939
+ "operationModes": {
1940
+ "heating": {
1941
+ "fanSpeed": {
1942
+ "currentMode": {
1943
+ "value": "fixed",
1944
+ "settable": true,
1945
+ "values": [
1946
+ "auto",
1947
+ "quiet",
1948
+ "fixed"
1949
+ ]
1950
+ },
1951
+ "modes": {
1952
+ "fixed": {
1953
+ "value": 1,
1954
+ "stepValue": 1,
1955
+ "minValue": 1,
1956
+ "maxValue": 5,
1957
+ "settable": true
1958
+ }
1959
+ }
1960
+ },
1961
+ "fanDirection": {
1962
+ "horizontal": {
1963
+ "currentMode": {
1964
+ "value": "swing",
1965
+ "settable": true,
1966
+ "values": [
1967
+ "stop",
1968
+ "swing"
1969
+ ]
1970
+ }
1971
+ },
1972
+ "vertical": {
1973
+ "currentMode": {
1974
+ "value": "stop",
1975
+ "settable": true,
1976
+ "values": [
1977
+ "stop",
1978
+ "swing",
1979
+ "windNice"
1980
+ ]
1981
+ }
1982
+ }
1983
+ }
1984
+ },
1985
+ "cooling": {
1986
+ "fanSpeed": {
1987
+ "currentMode": {
1988
+ "value": "auto",
1989
+ "settable": true,
1990
+ "values": [
1991
+ "auto",
1992
+ "quiet",
1993
+ "fixed"
1994
+ ]
1995
+ },
1996
+ "modes": {
1997
+ "fixed": {
1998
+ "value": 1,
1999
+ "stepValue": 1,
2000
+ "minValue": 1,
2001
+ "maxValue": 5,
2002
+ "settable": true
2003
+ }
2004
+ }
2005
+ },
2006
+ "fanDirection": {
2007
+ "horizontal": {
2008
+ "currentMode": {
2009
+ "value": "stop",
2010
+ "settable": true,
2011
+ "values": [
2012
+ "stop",
2013
+ "swing"
2014
+ ]
2015
+ }
2016
+ },
2017
+ "vertical": {
2018
+ "currentMode": {
2019
+ "value": "stop",
2020
+ "settable": true,
2021
+ "values": [
2022
+ "stop",
2023
+ "swing",
2024
+ "windNice"
2025
+ ]
2026
+ }
2027
+ }
2028
+ }
2029
+ },
2030
+ "auto": {
2031
+ "fanSpeed": {
2032
+ "currentMode": {
2033
+ "value": "fixed",
2034
+ "settable": true,
2035
+ "values": [
2036
+ "auto",
2037
+ "quiet",
2038
+ "fixed"
2039
+ ]
2040
+ },
2041
+ "modes": {
2042
+ "fixed": {
2043
+ "value": 1,
2044
+ "stepValue": 1,
2045
+ "minValue": 1,
2046
+ "maxValue": 5,
2047
+ "settable": true
2048
+ }
2049
+ }
2050
+ },
2051
+ "fanDirection": {
2052
+ "horizontal": {
2053
+ "currentMode": {
2054
+ "value": "swing",
2055
+ "settable": true,
2056
+ "values": [
2057
+ "stop",
2058
+ "swing"
2059
+ ]
2060
+ }
2061
+ },
2062
+ "vertical": {
2063
+ "currentMode": {
2064
+ "value": "stop",
2065
+ "settable": true,
2066
+ "values": [
2067
+ "stop",
2068
+ "swing",
2069
+ "windNice"
2070
+ ]
2071
+ }
2072
+ }
2073
+ }
2074
+ },
2075
+ "dry": {
2076
+ "fanSpeed": {
2077
+ "currentMode": {
2078
+ "value": "auto",
2079
+ "settable": true,
2080
+ "values": [
2081
+ "auto"
2082
+ ]
2083
+ }
2084
+ },
2085
+ "fanDirection": {
2086
+ "horizontal": {
2087
+ "currentMode": {
2088
+ "value": "stop",
2089
+ "settable": true,
2090
+ "values": [
2091
+ "stop",
2092
+ "swing"
2093
+ ]
2094
+ }
2095
+ },
2096
+ "vertical": {
2097
+ "currentMode": {
2098
+ "value": "stop",
2099
+ "settable": true,
2100
+ "values": [
2101
+ "stop",
2102
+ "swing",
2103
+ "windNice"
2104
+ ]
2105
+ }
2106
+ }
2107
+ }
2108
+ },
2109
+ "fanOnly": {
2110
+ "fanSpeed": {
2111
+ "currentMode": {
2112
+ "value": "fixed",
2113
+ "settable": true,
2114
+ "values": [
2115
+ "auto",
2116
+ "quiet",
2117
+ "fixed"
2118
+ ]
2119
+ },
2120
+ "modes": {
2121
+ "fixed": {
2122
+ "value": 1,
2123
+ "stepValue": 1,
2124
+ "minValue": 1,
2125
+ "maxValue": 5,
2126
+ "settable": true
2127
+ }
2128
+ }
2129
+ },
2130
+ "fanDirection": {
2131
+ "horizontal": {
2132
+ "currentMode": {
2133
+ "value": "swing",
2134
+ "settable": true,
2135
+ "values": [
2136
+ "stop",
2137
+ "swing"
2138
+ ]
2139
+ }
2140
+ },
2141
+ "vertical": {
2142
+ "currentMode": {
2143
+ "value": "stop",
2144
+ "settable": true,
2145
+ "values": [
2146
+ "stop",
2147
+ "swing"
2148
+ ]
2149
+ }
2150
+ }
2151
+ }
2152
+ }
2153
+ }
2154
+ }
2155
+ },
2156
+ "holidayMode": {
2157
+ "ref": "#holidayMode",
2158
+ "settable": true,
2159
+ "value": {
2160
+ "enabled": false
2161
+ }
2162
+ },
2163
+ "iconId": {
2164
+ "settable": true,
2165
+ "maxValue": 255,
2166
+ "minValue": 0,
2167
+ "value": 15
2168
+ },
2169
+ "isCoolHeatMaster": {
2170
+ "settable": false,
2171
+ "value": true
2172
+ },
2173
+ "isHolidayModeActive": {
2174
+ "settable": false,
2175
+ "value": false
2176
+ },
2177
+ "isInCautionState": {
2178
+ "settable": false,
2179
+ "value": false
2180
+ },
2181
+ "isInErrorState": {
2182
+ "settable": false,
2183
+ "value": false
2184
+ },
2185
+ "isInModeConflict": {
2186
+ "settable": false,
2187
+ "value": false
2188
+ },
2189
+ "isInWarningState": {
2190
+ "settable": false,
2191
+ "value": false
2192
+ },
2193
+ "isLockFunctionEnabled": {
2194
+ "settable": false,
2195
+ "value": false
2196
+ },
2197
+ "name": {
2198
+ "settable": true,
2199
+ "maxLength": 20,
2200
+ "value": "Perfera"
2201
+ },
2202
+ "onOffMode": {
2203
+ "settable": true,
2204
+ "values": [
2205
+ "on",
2206
+ "off"
2207
+ ],
2208
+ "value": "off"
2209
+ },
2210
+ "operationMode": {
2211
+ "settable": true,
2212
+ "value": "auto",
2213
+ "values": [
2214
+ "fanOnly",
2215
+ "heating",
2216
+ "cooling",
2217
+ "auto",
2218
+ "dry"
2219
+ ]
2220
+ },
2221
+ "outdoorSilentMode": {
2222
+ "settable": false,
2223
+ "values": [
2224
+ "on",
2225
+ "off"
2226
+ ],
2227
+ "value": "off"
2228
+ },
2229
+ "powerfulMode": {
2230
+ "settable": true,
2231
+ "values": [
2232
+ "on",
2233
+ "off"
2234
+ ],
2235
+ "value": "off"
2236
+ },
2237
+ "isPowerfulModeActive": {
2238
+ "settable": false,
2239
+ "value": false
2240
+ },
2241
+ "schedule": {
2242
+ "ref": "#schedule",
2243
+ "settable": true,
2244
+ "value": {
2245
+ "currentMode": {
2246
+ "value": "any",
2247
+ "settable": true,
2248
+ "values": [
2249
+ "any"
2250
+ ]
2251
+ },
2252
+ "nextAction": {},
2253
+ "modes": {
2254
+ "any": {
2255
+ "currentSchedule": {
2256
+ "value": "0",
2257
+ "settable": true,
2258
+ "values": [
2259
+ "0"
2260
+ ]
2261
+ },
2262
+ "enabled": {
2263
+ "value": false,
2264
+ "settable": true
2265
+ },
2266
+ "meta": {
2267
+ "minIntervalBetweenActions": "00:01:00",
2268
+ "maxSchedules": 1,
2269
+ "maxActionsPerActionPeriod": 6,
2270
+ "consecutiveActionsAllowed": true,
2271
+ "actionTypes": {
2272
+ "operationMode": {
2273
+ "settable": false,
2274
+ "values": [
2275
+ "fanOnly",
2276
+ "heating",
2277
+ "cooling",
2278
+ "auto",
2279
+ "dry",
2280
+ "off"
2281
+ ]
2282
+ },
2283
+ "roomTemperature": {
2284
+ "heating": {
2285
+ "settable": false,
2286
+ "stepValue": 0.5,
2287
+ "minValue": 10,
2288
+ "maxValue": 31
2289
+ },
2290
+ "cooling": {
2291
+ "settable": false,
2292
+ "stepValue": 0.5,
2293
+ "minValue": 18,
2294
+ "maxValue": 33
2295
+ },
2296
+ "auto": {
2297
+ "settable": false,
2298
+ "stepValue": 0.5,
2299
+ "minValue": 18,
2300
+ "maxValue": 30
2301
+ }
2302
+ },
2303
+ "fanSpeed": {
2304
+ "heating": {
2305
+ "currentMode": {
2306
+ "settable": false,
2307
+ "values": [
2308
+ "auto",
2309
+ "quiet",
2310
+ "fixed"
2311
+ ]
2312
+ },
2313
+ "modes": {
2314
+ "fixed": {
2315
+ "stepValue": 1,
2316
+ "minValue": 1,
2317
+ "maxValue": 5,
2318
+ "settable": false
2319
+ }
2320
+ }
2321
+ },
2322
+ "cooling": {
2323
+ "currentMode": {
2324
+ "settable": false,
2325
+ "values": [
2326
+ "auto",
2327
+ "quiet",
2328
+ "fixed"
2329
+ ]
2330
+ },
2331
+ "modes": {
2332
+ "fixed": {
2333
+ "stepValue": 1,
2334
+ "minValue": 1,
2335
+ "maxValue": 5,
2336
+ "settable": false
2337
+ }
2338
+ }
2339
+ },
2340
+ "auto": {
2341
+ "currentMode": {
2342
+ "settable": false,
2343
+ "values": [
2344
+ "auto",
2345
+ "quiet",
2346
+ "fixed"
2347
+ ]
2348
+ },
2349
+ "modes": {
2350
+ "fixed": {
2351
+ "stepValue": 1,
2352
+ "minValue": 1,
2353
+ "maxValue": 5,
2354
+ "settable": false
2355
+ }
2356
+ }
2357
+ },
2358
+ "dry": {
2359
+ "currentMode": {
2360
+ "settable": false,
2361
+ "values": [
2362
+ "auto"
2363
+ ]
2364
+ }
2365
+ },
2366
+ "fanOnly": {
2367
+ "currentMode": {
2368
+ "settable": false,
2369
+ "values": [
2370
+ "auto",
2371
+ "quiet",
2372
+ "fixed"
2373
+ ]
2374
+ },
2375
+ "modes": {
2376
+ "fixed": {
2377
+ "stepValue": 1,
2378
+ "minValue": 1,
2379
+ "maxValue": 5,
2380
+ "settable": false
2381
+ }
2382
+ }
2383
+ }
2384
+ },
2385
+ "econoMode": {
2386
+ "settable": false,
2387
+ "values": [
2388
+ "on",
2389
+ "off"
2390
+ ]
2391
+ }
2392
+ }
2393
+ },
2394
+ "schedules": {
2395
+ "0": {
2396
+ "name": {
2397
+ "maxLength": 32,
2398
+ "settable": true,
2399
+ "value": ""
2400
+ },
2401
+ "meta": {
2402
+ "actionPeriods": [
2403
+ "monday",
2404
+ "tuesday",
2405
+ "wednesday",
2406
+ "thursday",
2407
+ "friday",
2408
+ "saturday",
2409
+ "sunday"
2410
+ ],
2411
+ "isReadOnly": false
2412
+ },
2413
+ "actions": {},
2414
+ "settable": true
2415
+ }
2416
+ }
2417
+ }
2418
+ }
2419
+ }
2420
+ },
2421
+ "sensoryData": {
2422
+ "ref": "#sensoryData",
2423
+ "settable": false,
2424
+ "value": {
2425
+ "roomTemperature": {
2426
+ "settable": false,
2427
+ "unit": "°C",
2428
+ "value": 20,
2429
+ "stepValue": 1,
2430
+ "minValue": -25,
2431
+ "maxValue": 50
2432
+ },
2433
+ "outdoorTemperature": {
2434
+ "settable": false,
2435
+ "unit": "°C",
2436
+ "value": 1.5,
2437
+ "stepValue": 0.5,
2438
+ "minValue": -25,
2439
+ "maxValue": 50
2440
+ }
2441
+ }
2442
+ },
2443
+ "streamerMode": {
2444
+ "settable": true,
2445
+ "values": [
2446
+ "on",
2447
+ "off"
2448
+ ],
2449
+ "value": "off"
2450
+ },
2451
+ "temperatureControl": {
2452
+ "ref": "#temperatureControl",
2453
+ "settable": true,
2454
+ "value": {
2455
+ "operationModes": {
2456
+ "heating": {
2457
+ "setpoints": {
2458
+ "roomTemperature": {
2459
+ "settable": true,
2460
+ "value": 22,
2461
+ "unit": "°C",
2462
+ "stepValue": 0.5,
2463
+ "minValue": 10,
2464
+ "maxValue": 31
2465
+ }
2466
+ }
2467
+ },
2468
+ "cooling": {
2469
+ "setpoints": {
2470
+ "roomTemperature": {
2471
+ "settable": true,
2472
+ "value": 25,
2473
+ "unit": "°C",
2474
+ "stepValue": 0.5,
2475
+ "minValue": 18,
2476
+ "maxValue": 33
2477
+ }
2478
+ }
2479
+ },
2480
+ "auto": {
2481
+ "setpoints": {
2482
+ "roomTemperature": {
2483
+ "settable": true,
2484
+ "value": 18,
2485
+ "unit": "°C",
2486
+ "stepValue": 0.5,
2487
+ "minValue": 18,
2488
+ "maxValue": 30
2489
+ }
2490
+ }
2491
+ }
2492
+ }
2493
+ }
2494
+ }
2495
+ },
2496
+ {
2497
+ "embeddedId": "indoorUnit",
2498
+ "managementPointType": "indoorUnit",
2499
+ "managementPointCategory": "secondary",
2500
+ "softwareVersion": {
2501
+ "settable": false,
2502
+ "value": "20003002"
2503
+ },
2504
+ "eepromVersion": {
2505
+ "settable": false,
2506
+ "value": "12FD"
2507
+ },
2508
+ "dryKeepSetting": {
2509
+ "settable": false,
2510
+ "values": [
2511
+ "on",
2512
+ "off"
2513
+ ],
2514
+ "value": "on"
2515
+ }
2516
+ },
2517
+ {
2518
+ "embeddedId": "outdoorUnit",
2519
+ "managementPointType": "outdoorUnit",
2520
+ "managementPointCategory": "secondary",
2521
+ "errorCode": {
2522
+ "settable": false,
2523
+ "value": "00-"
2524
+ },
2525
+ "isInErrorState": {
2526
+ "settable": false,
2527
+ "value": false
2528
+ },
2529
+ "isInWarningState": {
2530
+ "settable": false,
2531
+ "value": false
2532
+ },
2533
+ "isInCautionState": {
2534
+ "settable": false,
2535
+ "value": false
2536
+ }
2537
+ }
2538
+ ],
2539
+ "embeddedId": "564116",
2540
+ "timestamp": "2023-03-07T19:14:40.746Z",
2541
+ "id": "fa8397fe-b23f-465b-b8b9-90bf15f565fa",
2542
+ "lastUpdateReceived": "2023-03-07T19:14:40.746Z"
2543
+ }
2544
+ ]