@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,759 @@
1
+ [
2
+ {
3
+ "deviceModel": "dx23",
4
+ "_id": "f28f4e28-b993-4ba0-a3d3-386503c5a1d0",
5
+ "id": "f28f4e28-b993-4ba0-a3d3-386503c5a1d0",
6
+ "isCloudConnectionUp": {
7
+ "settable": false,
8
+ "value": true
9
+ },
10
+ "embeddedId": "87d71634-0098-4d99-820c-386474f7b82f",
11
+ "managementPoints": [
12
+ {
13
+ "name": {
14
+ "value": "Gateway",
15
+ "settable": false,
16
+ "maxLength": 64
17
+ },
18
+ "ipAddress": {
19
+ "settable": false,
20
+ "value": "192.168.0.2"
21
+ },
22
+ "macAddress": {
23
+ "settable": false,
24
+ "value": "00:23:7e:f8:26:4e"
25
+ },
26
+ "firmwareVersion": {
27
+ "settable": false,
28
+ "value": "1_14_88"
29
+ },
30
+ "modelInfo": {
31
+ "settable": false,
32
+ "value": "BRP069B4x"
33
+ },
34
+ "embeddedId": "gateway",
35
+ "managementPointType": "gateway",
36
+ "isFirmwareUpdateSupported": {
37
+ "settable": false,
38
+ "value": true
39
+ },
40
+ "managementPointCategory": "secondary"
41
+ },
42
+ {
43
+ "name": {
44
+ "value": "my mock A2A HP",
45
+ "settable": false,
46
+ "maxLength": 32
47
+ },
48
+ "powerfulMode": {
49
+ "value": "off",
50
+ "settable": true,
51
+ "values": [
52
+ "on",
53
+ "off"
54
+ ]
55
+ },
56
+ "operationMode": {
57
+ "value": "auto",
58
+ "settable": true,
59
+ "values": [
60
+ "auto",
61
+ "dry",
62
+ "cooling",
63
+ "heating",
64
+ "fanOnly"
65
+ ]
66
+ },
67
+ "temperatureControl": {
68
+ "ref": "#temperatureControl",
69
+ "settable": true,
70
+ "value": {
71
+ "operationModes": {
72
+ "cooling": {
73
+ "setpoints": {
74
+ "roomTemperature": {
75
+ "settable": true,
76
+ "stepValue": 0.5,
77
+ "value": 25,
78
+ "minValue": 18,
79
+ "maxValue": 32
80
+ }
81
+ }
82
+ },
83
+ "auto": {
84
+ "setpoints": {
85
+ "roomTemperature": {
86
+ "settable": true,
87
+ "stepValue": 0.5,
88
+ "value": 25,
89
+ "minValue": 18,
90
+ "maxValue": 30
91
+ }
92
+ }
93
+ },
94
+ "heating": {
95
+ "setpoints": {
96
+ "roomTemperature": {
97
+ "settable": true,
98
+ "stepValue": 0.5,
99
+ "value": 25,
100
+ "minValue": 10,
101
+ "maxValue": 30
102
+ }
103
+ }
104
+ }
105
+ }
106
+ }
107
+ },
108
+ "schedule": {
109
+ "ref": "#schedule",
110
+ "settable": true,
111
+ "value": {
112
+ "nextAction": {},
113
+ "modes": {
114
+ "any": {
115
+ "schedules": {
116
+ "2": {
117
+ "name": {
118
+ "value": "",
119
+ "settable": false,
120
+ "maxLength": 32
121
+ },
122
+ "meta": {
123
+ "isReadOnly": false,
124
+ "actionPeriods": [
125
+ "monday",
126
+ "tuesday",
127
+ "wednesday",
128
+ "thursday",
129
+ "friday",
130
+ "saturday",
131
+ "sunday"
132
+ ]
133
+ },
134
+ "settable": false,
135
+ "actions": {}
136
+ },
137
+ "1": {
138
+ "name": {
139
+ "value": "",
140
+ "settable": false,
141
+ "maxLength": 32
142
+ },
143
+ "meta": {
144
+ "isReadOnly": false,
145
+ "actionPeriods": [
146
+ "monday",
147
+ "tuesday",
148
+ "wednesday",
149
+ "thursday",
150
+ "friday",
151
+ "saturday",
152
+ "sunday"
153
+ ]
154
+ },
155
+ "settable": false,
156
+ "actions": {}
157
+ },
158
+ "0": {
159
+ "name": {
160
+ "value": "",
161
+ "settable": false,
162
+ "maxLength": 32
163
+ },
164
+ "meta": {
165
+ "isReadOnly": false,
166
+ "actionPeriods": [
167
+ "monday",
168
+ "tuesday",
169
+ "wednesday",
170
+ "thursday",
171
+ "friday",
172
+ "saturday",
173
+ "sunday"
174
+ ]
175
+ },
176
+ "settable": false,
177
+ "actions": {}
178
+ }
179
+ },
180
+ "meta": {
181
+ "maxSchedules": 1,
182
+ "maxActionsPerActionPeriod": 6,
183
+ "consecutiveActionsAllowed": true,
184
+ "actionTypes": {
185
+ "roomTemperature": {
186
+ "cooling": {
187
+ "minValue": 18,
188
+ "stepValue": 0.5,
189
+ "settable": false,
190
+ "maxValue": 32
191
+ },
192
+ "auto": {
193
+ "minValue": 18,
194
+ "stepValue": 0.5,
195
+ "settable": false,
196
+ "maxValue": 30
197
+ },
198
+ "heating": {
199
+ "minValue": 10,
200
+ "stepValue": 0.5,
201
+ "settable": false,
202
+ "maxValue": 30
203
+ }
204
+ },
205
+ "operationMode": {
206
+ "settable": false,
207
+ "values": [
208
+ "auto",
209
+ "dry",
210
+ "cooling",
211
+ "heating",
212
+ "fanOnly",
213
+ "off"
214
+ ]
215
+ },
216
+ "fanSpeed": {
217
+ "dry": {
218
+ "currentMode": {
219
+ "settable": false,
220
+ "values": [
221
+ "auto"
222
+ ]
223
+ }
224
+ },
225
+ "fanOnly": {
226
+ "modes": {
227
+ "fixed": {
228
+ "minValue": 1,
229
+ "stepValue": 1,
230
+ "settable": false,
231
+ "maxValue": 5
232
+ }
233
+ },
234
+ "currentMode": {
235
+ "settable": false,
236
+ "values": [
237
+ "quiet",
238
+ "auto",
239
+ "fixed"
240
+ ]
241
+ }
242
+ },
243
+ "heating": {
244
+ "modes": {
245
+ "fixed": {
246
+ "minValue": 1,
247
+ "stepValue": 1,
248
+ "settable": false,
249
+ "maxValue": 5
250
+ }
251
+ },
252
+ "currentMode": {
253
+ "settable": false,
254
+ "values": [
255
+ "quiet",
256
+ "auto",
257
+ "fixed"
258
+ ]
259
+ }
260
+ },
261
+ "cooling": {
262
+ "modes": {
263
+ "fixed": {
264
+ "minValue": 1,
265
+ "stepValue": 1,
266
+ "settable": false,
267
+ "maxValue": 5
268
+ }
269
+ },
270
+ "currentMode": {
271
+ "settable": false,
272
+ "values": [
273
+ "quiet",
274
+ "auto",
275
+ "fixed"
276
+ ]
277
+ }
278
+ },
279
+ "auto": {
280
+ "modes": {
281
+ "fixed": {
282
+ "minValue": 1,
283
+ "stepValue": 1,
284
+ "settable": false,
285
+ "maxValue": 5
286
+ }
287
+ },
288
+ "currentMode": {
289
+ "settable": false,
290
+ "values": [
291
+ "quiet",
292
+ "auto",
293
+ "fixed"
294
+ ]
295
+ }
296
+ }
297
+ }
298
+ },
299
+ "minIntervalBetweenActions": "00:01:00"
300
+ },
301
+ "currentSchedule": {
302
+ "value": "0",
303
+ "settable": true,
304
+ "values": [
305
+ "0",
306
+ "1",
307
+ "2"
308
+ ]
309
+ },
310
+ "enabled": {
311
+ "settable": true,
312
+ "value": false
313
+ }
314
+ }
315
+ },
316
+ "currentMode": {
317
+ "value": "any",
318
+ "settable": true,
319
+ "values": [
320
+ "any"
321
+ ]
322
+ }
323
+ }
324
+ },
325
+ "holidayMode": {
326
+ "ref": "#holidayMode",
327
+ "settable": true,
328
+ "value": {
329
+ "enabled": false
330
+ }
331
+ },
332
+ "isInErrorState": {
333
+ "settable": false,
334
+ "value": false
335
+ },
336
+ "managementPointSubType": "mainZone",
337
+ "consumptionData": {
338
+ "ref": "#consumptionData",
339
+ "settable": false,
340
+ "value": {
341
+ "electrical": {
342
+ "cooling": {
343
+ "m": [
344
+ 0,
345
+ 0,
346
+ 0,
347
+ 0,
348
+ 0,
349
+ 0,
350
+ 0,
351
+ 0,
352
+ 0,
353
+ 0,
354
+ 0,
355
+ 0,
356
+ 0,
357
+ 0,
358
+ 0,
359
+ 0,
360
+ 0,
361
+ 0,
362
+ 0,
363
+ 0,
364
+ 0.6,
365
+ 0,
366
+ 0,
367
+ 0
368
+ ],
369
+ "d": [
370
+ 0,
371
+ 0,
372
+ 0,
373
+ 0,
374
+ 0.1,
375
+ 0,
376
+ 0,
377
+ 0,
378
+ 0,
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0,
383
+ 0,
384
+ 0.1,
385
+ 0,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0,
392
+ 0,
393
+ 0
394
+ ],
395
+ "w": [
396
+ 0,
397
+ 0,
398
+ 0,
399
+ 0,
400
+ 0,
401
+ 0.2,
402
+ 0.1,
403
+ 0.1,
404
+ 0.1,
405
+ 0.1,
406
+ null,
407
+ null,
408
+ null,
409
+ null
410
+ ]
411
+ },
412
+ "unit": "kWh",
413
+ "heating": {
414
+ "m": [
415
+ 0,
416
+ 0,
417
+ 0,
418
+ 0,
419
+ 0,
420
+ 0,
421
+ 0,
422
+ 0,
423
+ 0,
424
+ 0,
425
+ 0,
426
+ 0,
427
+ 0,
428
+ 0,
429
+ 0,
430
+ 0,
431
+ 0,
432
+ 0,
433
+ 0,
434
+ 0,
435
+ 0,
436
+ 0,
437
+ 0,
438
+ 0
439
+ ],
440
+ "d": [
441
+ 0,
442
+ 0,
443
+ 0,
444
+ 0,
445
+ 0,
446
+ 0,
447
+ 0,
448
+ 0,
449
+ 0,
450
+ 0,
451
+ 0,
452
+ 0,
453
+ 0,
454
+ 0,
455
+ 0,
456
+ 0,
457
+ 0,
458
+ 0,
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0
465
+ ],
466
+ "w": [
467
+ 0,
468
+ 0,
469
+ 0,
470
+ 0,
471
+ 0,
472
+ 0,
473
+ 0,
474
+ 0,
475
+ 0,
476
+ 0,
477
+ null,
478
+ null,
479
+ null,
480
+ null
481
+ ]
482
+ }
483
+ }
484
+ }
485
+ },
486
+ "errorCode": {
487
+ "settable": false,
488
+ "value": "00"
489
+ },
490
+ "fanControl": {
491
+ "ref": "#fanControl",
492
+ "settable": true,
493
+ "value": {
494
+ "operationModes": {
495
+ "dry": {
496
+ "fanDirection": {
497
+ "vertical": {
498
+ "currentMode": {
499
+ "value": "stop",
500
+ "settable": true,
501
+ "values": [
502
+ "stop",
503
+ "swing"
504
+ ]
505
+ }
506
+ },
507
+ "horizontal": {
508
+ "currentMode": {
509
+ "value": "stop",
510
+ "settable": true,
511
+ "values": [
512
+ "stop",
513
+ "swing"
514
+ ]
515
+ }
516
+ }
517
+ },
518
+ "fanSpeed": {
519
+ "currentMode": {
520
+ "value": "auto",
521
+ "settable": true,
522
+ "values": [
523
+ "auto"
524
+ ]
525
+ }
526
+ }
527
+ },
528
+ "fanOnly": {
529
+ "fanDirection": {
530
+ "vertical": {
531
+ "currentMode": {
532
+ "value": "swing",
533
+ "settable": true,
534
+ "values": [
535
+ "stop",
536
+ "swing"
537
+ ]
538
+ }
539
+ },
540
+ "horizontal": {
541
+ "currentMode": {
542
+ "value": "stop",
543
+ "settable": true,
544
+ "values": [
545
+ "stop",
546
+ "swing"
547
+ ]
548
+ }
549
+ }
550
+ },
551
+ "fanSpeed": {
552
+ "modes": {
553
+ "fixed": {
554
+ "settable": true,
555
+ "stepValue": 1,
556
+ "value": 2,
557
+ "minValue": 1,
558
+ "maxValue": 5
559
+ }
560
+ },
561
+ "currentMode": {
562
+ "value": "fixed",
563
+ "settable": true,
564
+ "values": [
565
+ "quiet",
566
+ "auto",
567
+ "fixed"
568
+ ]
569
+ }
570
+ }
571
+ },
572
+ "heating": {
573
+ "fanDirection": {
574
+ "vertical": {
575
+ "currentMode": {
576
+ "value": "stop",
577
+ "settable": true,
578
+ "values": [
579
+ "stop",
580
+ "swing"
581
+ ]
582
+ }
583
+ },
584
+ "horizontal": {
585
+ "currentMode": {
586
+ "value": "stop",
587
+ "settable": true,
588
+ "values": [
589
+ "stop",
590
+ "swing"
591
+ ]
592
+ }
593
+ }
594
+ },
595
+ "fanSpeed": {
596
+ "modes": {
597
+ "fixed": {
598
+ "settable": true,
599
+ "stepValue": 1,
600
+ "value": 3,
601
+ "minValue": 1,
602
+ "maxValue": 5
603
+ }
604
+ },
605
+ "currentMode": {
606
+ "value": "fixed",
607
+ "settable": true,
608
+ "values": [
609
+ "quiet",
610
+ "auto",
611
+ "fixed"
612
+ ]
613
+ }
614
+ }
615
+ },
616
+ "cooling": {
617
+ "fanDirection": {
618
+ "vertical": {
619
+ "currentMode": {
620
+ "value": "stop",
621
+ "settable": true,
622
+ "values": [
623
+ "stop",
624
+ "swing"
625
+ ]
626
+ }
627
+ },
628
+ "horizontal": {
629
+ "currentMode": {
630
+ "value": "stop",
631
+ "settable": true,
632
+ "values": [
633
+ "stop",
634
+ "swing"
635
+ ]
636
+ }
637
+ }
638
+ },
639
+ "fanSpeed": {
640
+ "modes": {
641
+ "fixed": {
642
+ "settable": true,
643
+ "stepValue": 1,
644
+ "value": 3,
645
+ "minValue": 1,
646
+ "maxValue": 5
647
+ }
648
+ },
649
+ "currentMode": {
650
+ "value": "fixed",
651
+ "settable": true,
652
+ "values": [
653
+ "quiet",
654
+ "auto",
655
+ "fixed"
656
+ ]
657
+ }
658
+ }
659
+ },
660
+ "auto": {
661
+ "fanDirection": {
662
+ "vertical": {
663
+ "currentMode": {
664
+ "value": "swing",
665
+ "settable": true,
666
+ "values": [
667
+ "stop",
668
+ "swing"
669
+ ]
670
+ }
671
+ },
672
+ "horizontal": {
673
+ "currentMode": {
674
+ "value": "stop",
675
+ "settable": true,
676
+ "values": [
677
+ "stop",
678
+ "swing"
679
+ ]
680
+ }
681
+ }
682
+ },
683
+ "fanSpeed": {
684
+ "modes": {
685
+ "fixed": {
686
+ "settable": true,
687
+ "stepValue": 1,
688
+ "value": 2,
689
+ "minValue": 1,
690
+ "maxValue": 5
691
+ }
692
+ },
693
+ "currentMode": {
694
+ "value": "fixed",
695
+ "settable": true,
696
+ "values": [
697
+ "quiet",
698
+ "auto",
699
+ "fixed"
700
+ ]
701
+ }
702
+ }
703
+ }
704
+ }
705
+ }
706
+ },
707
+ "managementPointCategory": "primary",
708
+ "onOffMode": {
709
+ "value": "on",
710
+ "settable": true,
711
+ "values": [
712
+ "on",
713
+ "off"
714
+ ]
715
+ },
716
+ "sensoryData": {
717
+ "ref": "#sensoryData",
718
+ "settable": false,
719
+ "value": {
720
+ "roomTemperature": {
721
+ "settable": false,
722
+ "value": 26
723
+ },
724
+ "outdoorTemperature": {
725
+ "settable": false,
726
+ "value": 30
727
+ }
728
+ }
729
+ },
730
+ "embeddedId": "climateControl",
731
+ "managementPointType": "climateControl",
732
+ "isHolidayModeActive": {
733
+ "settable": false,
734
+ "value": false
735
+ },
736
+ "isPowerfulModeActive": {
737
+ "settable": false,
738
+ "value": false
739
+ }
740
+ },
741
+ {
742
+ "name": {
743
+ "value": "Indoor Unit",
744
+ "settable": false,
745
+ "maxLength": 32
746
+ },
747
+ "embeddedId": "indoorUnit",
748
+ "managementPointType": "indoorUnit",
749
+ "softwareVersion": {
750
+ "settable": false,
751
+ "value": "3.20"
752
+ },
753
+ "managementPointCategory": "secondary"
754
+ }
755
+ ],
756
+ "type": "dx23",
757
+ "timestamp": "2018-11-13T20:20:39.000Z"
758
+ }
759
+ ]