@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,479 @@
1
+
2
+
3
+ export const althermaHeatPump2 = {
4
+ '_id': '517f8022-c4ef-4a84-99bf-2ce5cdf1ebcb',
5
+ 'id': '517f8022-c4ef-4a84-99bf-2ce5cdf1ebcb',
6
+ 'deviceModel': 'Altherma',
7
+ 'type': 'heating-wlan',
8
+ 'isCloudConnectionUp': {
9
+ 'settable': false,
10
+ 'value': true,
11
+ },
12
+ 'managementPoints': [
13
+ {
14
+ 'embeddedId': 'gateway',
15
+ 'managementPointType': 'gateway',
16
+ 'managementPointCategory': 'secondary',
17
+ 'firmwareVersion': {
18
+ 'settable': false,
19
+ 'value': '3.2.5',
20
+ 'maxLength': 8,
21
+ },
22
+ 'ipAddress': {
23
+ 'settable': false,
24
+ 'value': 'REDACTED',
25
+ 'maxLength': 15,
26
+ },
27
+ 'iconId': {
28
+ 'settable': true,
29
+ 'requiresReboot': false,
30
+ 'value': 3,
31
+ },
32
+ 'isFirmwareUpdateSupported': {
33
+ 'settable': false,
34
+ 'requiresReboot': false,
35
+ 'value': true,
36
+ },
37
+ 'macAddress': {
38
+ 'settable': false,
39
+ 'value': 'REDACTED',
40
+ 'maxLength': 17,
41
+ },
42
+ 'modelInfo': {
43
+ 'settable': false,
44
+ 'value': 'BRP069A78',
45
+ 'maxLength': 9,
46
+ },
47
+ 'name': {
48
+ 'settable': true,
49
+ 'requiresReboot': false,
50
+ 'value': 'Gateway',
51
+ 'maxLength': 63,
52
+ },
53
+ 'ssid': {
54
+ 'settable': false,
55
+ 'requiresReboot': false,
56
+ 'value': 'REDACTED',
57
+ 'maxLength': 9,
58
+ },
59
+ 'serialNumber': {
60
+ 'settable': false,
61
+ 'value': 'REDACTED',
62
+ 'maxLength': 16,
63
+ },
64
+ 'wifiConnectionSSID': {
65
+ 'settable': false,
66
+ 'requiresReboot': false,
67
+ 'value': 'REDACTED',
68
+ 'maxLength': 32,
69
+ },
70
+ 'wifiConnectionStrength': {
71
+ 'settable': false,
72
+ 'requiresReboot': false,
73
+ 'value': -68,
74
+ 'maxValue': 0,
75
+ 'minValue': -90,
76
+ 'stepValue': 1,
77
+ },
78
+ },
79
+ {
80
+ 'embeddedId': 'climateControlMainZone',
81
+ 'managementPointType': 'climateControl',
82
+ 'managementPointCategory': 'primary',
83
+ 'managementPointSubType': 'mainZone',
84
+ 'consumptionData': 'REDACTED',
85
+ 'controlMode': {
86
+ 'settable': false,
87
+ 'requiresReboot': false,
88
+ 'value': 'leavingWaterTemperature',
89
+ 'values': [
90
+ 'leavingWaterTemperature',
91
+ 'externalRoomTemperature',
92
+ 'roomTemperature',
93
+ ],
94
+ },
95
+ 'errorCode': {
96
+ 'settable': false,
97
+ 'requiresReboot': false,
98
+ 'value': '',
99
+ 'maxLength': 16,
100
+ },
101
+ 'holidayMode': {
102
+ 'settable': true,
103
+ 'requiresReboot': false,
104
+ 'ref': '#holidayMode',
105
+ 'value': {
106
+ 'enabled': false,
107
+ 'startDate': '2017-01-01',
108
+ 'endDate': '2017-01-01',
109
+ },
110
+ },
111
+ 'iconId': {
112
+ 'settable': true,
113
+ 'requiresReboot': false,
114
+ 'value': 11,
115
+ },
116
+ 'isHolidayModeActive': {
117
+ 'settable': false,
118
+ 'requiresReboot': false,
119
+ 'value': false,
120
+ },
121
+ 'isInEmergencyState': {
122
+ 'settable': false,
123
+ 'requiresReboot': false,
124
+ 'value': false,
125
+ },
126
+ 'isInErrorState': {
127
+ 'settable': false,
128
+ 'requiresReboot': false,
129
+ 'value': false,
130
+ },
131
+ 'isInInstallerState': {
132
+ 'settable': false,
133
+ 'requiresReboot': false,
134
+ 'value': false,
135
+ },
136
+ 'isInWarningState': {
137
+ 'settable': false,
138
+ 'requiresReboot': false,
139
+ 'value': false,
140
+ },
141
+ 'name': {
142
+ 'settable': true,
143
+ 'requiresReboot': false,
144
+ 'value': '',
145
+ 'maxLength': 63,
146
+ },
147
+ 'onOffMode': {
148
+ 'settable': true,
149
+ 'requiresReboot': false,
150
+ 'value': 'off',
151
+ 'values': [
152
+ 'off',
153
+ 'on',
154
+ ],
155
+ },
156
+ 'operationMode': {
157
+ 'settable': true,
158
+ 'requiresReboot': false,
159
+ 'value': 'heating',
160
+ 'values': [
161
+ 'heating',
162
+ 'cooling',
163
+ 'auto',
164
+ ],
165
+ },
166
+ 'sensoryData': {
167
+ 'settable': false,
168
+ 'ref': '#sensoryData',
169
+ 'value': {
170
+ 'outdoorTemperature': {
171
+ 'settable': false,
172
+ 'requiresReboot': false,
173
+ 'value': 16,
174
+ 'maxValue': 127,
175
+ 'minValue': -127,
176
+ 'stepValue': 1,
177
+ },
178
+ 'leavingWaterTemperature': {
179
+ 'settable': false,
180
+ 'requiresReboot': false,
181
+ 'value': 33,
182
+ 'maxValue': 127,
183
+ 'minValue': -127,
184
+ 'stepValue': 1,
185
+ },
186
+ },
187
+ },
188
+ 'setpointMode': {
189
+ 'settable': false,
190
+ 'requiresReboot': true,
191
+ 'value': 'weatherDependent',
192
+ 'values': [
193
+ 'fixed',
194
+ 'weatherDependentHeatingFixedCooling',
195
+ 'weatherDependent',
196
+ ],
197
+ },
198
+ 'temperatureControl': {
199
+ 'settable': true,
200
+ 'ref': '#temperatureControl',
201
+ 'value': {
202
+ 'operationModes': {
203
+ 'auto': {
204
+ 'setpoints': {
205
+ 'leavingWaterOffset': {
206
+ 'settable': true,
207
+ 'requiresReboot': false,
208
+ 'value': 0,
209
+ 'maxValue': 10,
210
+ 'minValue': -10,
211
+ 'stepValue': 1,
212
+ },
213
+ },
214
+ },
215
+ 'heating': {
216
+ 'setpoints': {
217
+ 'leavingWaterOffset': {
218
+ 'settable': true,
219
+ 'requiresReboot': false,
220
+ 'value': 0,
221
+ 'maxValue': 10,
222
+ 'minValue': -10,
223
+ 'stepValue': 1,
224
+ },
225
+ },
226
+ },
227
+ 'cooling': {
228
+ 'setpoints': {
229
+ 'leavingWaterOffset': {
230
+ 'settable': true,
231
+ 'requiresReboot': false,
232
+ 'value': 0,
233
+ 'maxValue': 10,
234
+ 'minValue': -10,
235
+ 'stepValue': 1,
236
+ },
237
+ },
238
+ },
239
+ },
240
+ },
241
+ },
242
+ },
243
+ {
244
+ 'embeddedId': 'domesticHotWaterTank',
245
+ 'managementPointType': 'domesticHotWaterTank',
246
+ 'managementPointCategory': 'primary',
247
+ 'consumptionData': 'REDACTED',
248
+ 'errorCode': {
249
+ 'settable': false,
250
+ 'requiresReboot': false,
251
+ 'value': '',
252
+ 'maxLength': 16,
253
+ },
254
+ 'heatupMode': {
255
+ 'settable': false,
256
+ 'requiresReboot': true,
257
+ 'value': 'reheatOnly',
258
+ 'values': [
259
+ 'reheatOnly',
260
+ 'reheatSchedule',
261
+ 'scheduleOnly',
262
+ ],
263
+ },
264
+ 'iconId': {
265
+ 'settable': true,
266
+ 'requiresReboot': false,
267
+ 'value': 29,
268
+ },
269
+ 'isHolidayModeActive': {
270
+ 'settable': false,
271
+ 'requiresReboot': false,
272
+ 'value': false,
273
+ },
274
+ 'isInEmergencyState': {
275
+ 'settable': false,
276
+ 'requiresReboot': false,
277
+ 'value': false,
278
+ },
279
+ 'isInErrorState': {
280
+ 'settable': false,
281
+ 'requiresReboot': false,
282
+ 'value': false,
283
+ },
284
+ 'isInInstallerState': {
285
+ 'settable': false,
286
+ 'requiresReboot': false,
287
+ 'value': false,
288
+ },
289
+ 'isInWarningState': {
290
+ 'settable': false,
291
+ 'requiresReboot': false,
292
+ 'value': false,
293
+ },
294
+ 'isPowerfulModeActive': {
295
+ 'settable': false,
296
+ 'requiresReboot': false,
297
+ 'value': false,
298
+ },
299
+ 'name': {
300
+ 'settable': true,
301
+ 'requiresReboot': false,
302
+ 'value': '',
303
+ 'maxLength': 63,
304
+ },
305
+ 'onOffMode': {
306
+ 'settable': true,
307
+ 'requiresReboot': false,
308
+ 'value': 'on',
309
+ 'values': [
310
+ 'off',
311
+ 'on',
312
+ ],
313
+ },
314
+ 'operationMode': {
315
+ 'settable': false,
316
+ 'value': 'heating',
317
+ 'values': [
318
+ 'heating',
319
+ ],
320
+ },
321
+ 'powerfulMode': {
322
+ 'settable': true,
323
+ 'requiresReboot': false,
324
+ 'value': 'off',
325
+ 'values': [
326
+ 'off',
327
+ 'on',
328
+ ],
329
+ },
330
+ 'sensoryData': {
331
+ 'settable': false,
332
+ 'ref': '#sensoryData',
333
+ 'value': {
334
+ 'tankTemperature': {
335
+ 'settable': false,
336
+ 'requiresReboot': false,
337
+ 'value': 50,
338
+ 'maxValue': 127,
339
+ 'minValue': -127,
340
+ 'stepValue': 1,
341
+ },
342
+ },
343
+ },
344
+ 'setpointMode': {
345
+ 'settable': false,
346
+ 'requiresReboot': false,
347
+ 'value': 'fixed',
348
+ 'values': [
349
+ 'fixed',
350
+ 'weatherDependent',
351
+ ],
352
+ },
353
+ 'temperatureControl': {
354
+ 'settable': true,
355
+ 'ref': '#temperatureControl',
356
+ 'value': {
357
+ 'operationModes': {
358
+ 'heating': {
359
+ 'setpoints': {
360
+ 'domesticHotWaterTemperature': {
361
+ 'settable': true,
362
+ 'requiresReboot': false,
363
+ 'value': 50,
364
+ 'maxValue': 60,
365
+ 'minValue': 30,
366
+ 'stepValue': 1,
367
+ },
368
+ },
369
+ },
370
+ },
371
+ },
372
+ },
373
+ },
374
+ {
375
+ 'embeddedId': 'indoorUnitHydro',
376
+ 'managementPointType': 'indoorUnitHydro',
377
+ 'managementPointCategory': 'secondary',
378
+ 'eepromVersion': {
379
+ 'settable': false,
380
+ 'requiresReboot': false,
381
+ 'value': '3608726-74D',
382
+ 'maxLength': 16,
383
+ },
384
+ 'iconId': {
385
+ 'settable': true,
386
+ 'requiresReboot': false,
387
+ 'value': 4,
388
+ },
389
+ 'modelInfo': {
390
+ 'settable': false,
391
+ 'requiresReboot': false,
392
+ 'value': 'EHVX08S23EJ9W',
393
+ 'maxLength': 16,
394
+ },
395
+ 'name': {
396
+ 'settable': true,
397
+ 'requiresReboot': false,
398
+ 'value': 'Indoor Hydro Unit',
399
+ 'maxLength': 63,
400
+ },
401
+ 'softwareVersion': {
402
+ 'settable': false,
403
+ 'requiresReboot': false,
404
+ 'value': '0222',
405
+ 'maxLength': 16,
406
+ },
407
+ },
408
+ {
409
+ 'embeddedId': 'outdoorUnit',
410
+ 'managementPointType': 'outdoorUnit',
411
+ 'managementPointCategory': 'secondary',
412
+ 'iconId': {
413
+ 'settable': true,
414
+ 'requiresReboot': false,
415
+ 'value': 5,
416
+ },
417
+ 'name': {
418
+ 'settable': true,
419
+ 'requiresReboot': false,
420
+ 'value': 'Outdoor Unit',
421
+ 'maxLength': 63,
422
+ },
423
+ 'softwareVersion': {
424
+ 'settable': false,
425
+ 'requiresReboot': false,
426
+ 'value': 'FFFF',
427
+ 'maxLength': 16,
428
+ },
429
+ },
430
+ {
431
+ 'embeddedId': 'userInterface',
432
+ 'managementPointType': 'userInterface',
433
+ 'managementPointCategory': 'secondary',
434
+ 'dateTime': {
435
+ 'settable': false,
436
+ 'requiresReboot': false,
437
+ 'value': '2023-09-23T05:58:57',
438
+ },
439
+ 'firmwareVersion': {
440
+ 'settable': false,
441
+ 'requiresReboot': false,
442
+ 'deprecated': 'DEPRECATED',
443
+ 'value': '7.1.0',
444
+ 'maxLength': 16,
445
+ },
446
+ 'iconId': {
447
+ 'settable': true,
448
+ 'requiresReboot': false,
449
+ 'value': 6,
450
+ },
451
+ 'miconId': {
452
+ 'settable': false,
453
+ 'requiresReboot': false,
454
+ 'value': '20010E07',
455
+ 'maxLength': 16,
456
+ },
457
+ 'modelInfo': {
458
+ 'settable': false,
459
+ 'requiresReboot': false,
460
+ 'value': 'EHVX08S23EJ9W',
461
+ 'maxLength': 16,
462
+ },
463
+ 'name': {
464
+ 'settable': true,
465
+ 'requiresReboot': false,
466
+ 'value': 'User Interface',
467
+ 'maxLength': 63,
468
+ },
469
+ 'softwareVersion': {
470
+ 'settable': false,
471
+ 'requiresReboot': false,
472
+ 'value': '7.1.0',
473
+ 'maxLength': 16,
474
+ },
475
+ },
476
+ ],
477
+ 'embeddedId': '25eff8e4-e12e-4ccd-ac41-c5b913c7c10d',
478
+ 'timestamp': '2023-09-23T08:24:03.059Z',
479
+ };