@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.
- package/.claude/settings.json +3 -0
- package/.claude/settings.local.json +8 -0
- package/CLAUDE.md +34 -0
- package/LICENSE +176 -0
- package/README.md +180 -0
- package/changelog.md +217 -0
- package/config.md +2 -0
- package/config.schema.json +146 -0
- package/dist/src/accessories/air-conditioning-accessory.d.ts +9 -0
- package/dist/src/accessories/air-conditioning-accessory.d.ts.map +1 -0
- package/dist/src/accessories/air-conditioning-accessory.js +19 -0
- package/dist/src/accessories/air-conditioning-accessory.js.map +1 -0
- package/dist/src/accessories/altherma-accessory.d.ts +11 -0
- package/dist/src/accessories/altherma-accessory.d.ts.map +1 -0
- package/dist/src/accessories/altherma-accessory.js +31 -0
- package/dist/src/accessories/altherma-accessory.js.map +1 -0
- package/dist/src/accessories/base-accessory.d.ts +16 -0
- package/dist/src/accessories/base-accessory.d.ts.map +1 -0
- package/dist/src/accessories/base-accessory.js +56 -0
- package/dist/src/accessories/base-accessory.js.map +1 -0
- package/dist/src/accessories/index.d.ts +4 -0
- package/dist/src/accessories/index.d.ts.map +1 -0
- package/dist/src/accessories/index.js +20 -0
- package/dist/src/accessories/index.js.map +1 -0
- package/dist/src/api/daikin-cloud.repository.d.ts +4 -0
- package/dist/src/api/daikin-cloud.repository.d.ts.map +1 -0
- package/dist/src/api/daikin-cloud.repository.js +31 -0
- package/dist/src/api/daikin-cloud.repository.js.map +1 -0
- package/dist/src/api/index.d.ts +2 -0
- package/dist/src/api/index.d.ts.map +1 -0
- package/dist/src/api/index.js +18 -0
- package/dist/src/api/index.js.map +1 -0
- package/dist/src/device/accessory-factory.d.ts +36 -0
- package/dist/src/device/accessory-factory.d.ts.map +1 -0
- package/dist/src/device/accessory-factory.js +61 -0
- package/dist/src/device/accessory-factory.js.map +1 -0
- package/dist/src/device/capability-detector.d.ts +36 -0
- package/dist/src/device/capability-detector.d.ts.map +1 -0
- package/dist/src/device/capability-detector.js +130 -0
- package/dist/src/device/capability-detector.js.map +1 -0
- package/dist/src/device/capability-docs.d.ts +20 -0
- package/dist/src/device/capability-docs.d.ts.map +1 -0
- package/dist/src/device/capability-docs.js +98 -0
- package/dist/src/device/capability-docs.js.map +1 -0
- package/dist/src/device/index.d.ts +5 -0
- package/dist/src/device/index.d.ts.map +1 -0
- package/dist/src/device/index.js +21 -0
- package/dist/src/device/index.js.map +1 -0
- package/dist/src/device/profiles/device-profile.d.ts +42 -0
- package/dist/src/device/profiles/device-profile.d.ts.map +1 -0
- package/dist/src/device/profiles/device-profile.js +103 -0
- package/dist/src/device/profiles/device-profile.js.map +1 -0
- package/dist/src/device/profiles/index.d.ts +2 -0
- package/dist/src/device/profiles/index.d.ts.map +1 -0
- package/dist/src/device/profiles/index.js +18 -0
- package/dist/src/device/profiles/index.js.map +1 -0
- package/dist/src/features/base-feature.d.ts +65 -0
- package/dist/src/features/base-feature.d.ts.map +1 -0
- package/dist/src/features/base-feature.js +99 -0
- package/dist/src/features/base-feature.js.map +1 -0
- package/dist/src/features/feature-manager.d.ts +37 -0
- package/dist/src/features/feature-manager.d.ts.map +1 -0
- package/dist/src/features/feature-manager.js +68 -0
- package/dist/src/features/feature-manager.js.map +1 -0
- package/dist/src/features/index.d.ts +4 -0
- package/dist/src/features/index.d.ts.map +1 -0
- package/dist/src/features/index.js +20 -0
- package/dist/src/features/index.js.map +1 -0
- package/dist/src/features/modes/dry-operation-mode.feature.d.ts +16 -0
- package/dist/src/features/modes/dry-operation-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/dry-operation-mode.feature.js +40 -0
- package/dist/src/features/modes/dry-operation-mode.feature.js.map +1 -0
- package/dist/src/features/modes/econo-mode.feature.d.ts +15 -0
- package/dist/src/features/modes/econo-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/econo-mode.feature.js +37 -0
- package/dist/src/features/modes/econo-mode.feature.js.map +1 -0
- package/dist/src/features/modes/fan-only-operation-mode.feature.d.ts +16 -0
- package/dist/src/features/modes/fan-only-operation-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/fan-only-operation-mode.feature.js +40 -0
- package/dist/src/features/modes/fan-only-operation-mode.feature.js.map +1 -0
- package/dist/src/features/modes/index.d.ts +8 -0
- package/dist/src/features/modes/index.d.ts.map +1 -0
- package/dist/src/features/modes/index.js +24 -0
- package/dist/src/features/modes/index.js.map +1 -0
- package/dist/src/features/modes/indoor-silent-mode.feature.d.ts +17 -0
- package/dist/src/features/modes/indoor-silent-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/indoor-silent-mode.feature.js +47 -0
- package/dist/src/features/modes/indoor-silent-mode.feature.js.map +1 -0
- package/dist/src/features/modes/outdoor-silent-mode.feature.d.ts +15 -0
- package/dist/src/features/modes/outdoor-silent-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/outdoor-silent-mode.feature.js +37 -0
- package/dist/src/features/modes/outdoor-silent-mode.feature.js.map +1 -0
- package/dist/src/features/modes/powerful-mode.feature.d.ts +15 -0
- package/dist/src/features/modes/powerful-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/powerful-mode.feature.js +37 -0
- package/dist/src/features/modes/powerful-mode.feature.js.map +1 -0
- package/dist/src/features/modes/streamer-mode.feature.d.ts +15 -0
- package/dist/src/features/modes/streamer-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/streamer-mode.feature.js +37 -0
- package/dist/src/features/modes/streamer-mode.feature.js.map +1 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +7 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/platform.d.ts +33 -0
- package/dist/src/platform.d.ts.map +1 -0
- package/dist/src/platform.js +209 -0
- package/dist/src/platform.js.map +1 -0
- package/dist/src/services/climate-control.service.d.ts +43 -0
- package/dist/src/services/climate-control.service.d.ts.map +1 -0
- package/dist/src/services/climate-control.service.js +366 -0
- package/dist/src/services/climate-control.service.js.map +1 -0
- package/dist/src/services/hot-water-tank.service.d.ts +23 -0
- package/dist/src/services/hot-water-tank.service.d.ts.map +1 -0
- package/dist/src/services/hot-water-tank.service.js +214 -0
- package/dist/src/services/hot-water-tank.service.js.map +1 -0
- package/dist/src/services/index.d.ts +3 -0
- package/dist/src/services/index.d.ts.map +1 -0
- package/dist/src/services/index.js +19 -0
- package/dist/src/services/index.js.map +1 -0
- package/dist/src/settings.d.ts +9 -0
- package/dist/src/settings.d.ts.map +1 -0
- package/dist/src/settings.js +12 -0
- package/dist/src/settings.js.map +1 -0
- package/dist/src/types/daikin-enums.d.ts +61 -0
- package/dist/src/types/daikin-enums.d.ts.map +1 -0
- package/dist/src/types/daikin-enums.js +76 -0
- package/dist/src/types/daikin-enums.js.map +1 -0
- package/dist/src/types/device-capabilities.d.ts +47 -0
- package/dist/src/types/device-capabilities.d.ts.map +1 -0
- package/dist/src/types/device-capabilities.js +7 -0
- package/dist/src/types/device-capabilities.js.map +1 -0
- package/dist/src/types/index.d.ts +3 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/src/types/index.js +19 -0
- package/dist/src/types/index.js.map +1 -0
- package/dist/src/utils/strings.d.ts +5 -0
- package/dist/src/utils/strings.d.ts.map +1 -0
- package/dist/src/utils/strings.js +22 -0
- package/dist/src/utils/strings.js.map +1 -0
- package/docs/Screenshot 2024-07-04 at 18.41.28.png +0 -0
- package/docs/api-response-for-BRP069A8x.json +520 -0
- package/docs/api-response-for-BRP069C4x-2.json +881 -0
- package/docs/api-response-for-BRP069C4x.json +916 -0
- package/docs/api-response-for-altherma.json +759 -0
- package/docs/api-response-for-altherma2.json +2735 -0
- package/docs/api-response-with-multiple-devices-incl-heatpump.json +2544 -0
- package/docs/cr-insance-altherma-id-0.json +834 -0
- package/docs/mock-air-to-air-dx23.json +759 -0
- package/docs/mock-air-to-air-dx4.json +1134 -0
- package/docs/mock-airpurifier-with-humidifier.json +732 -0
- package/docs/mock-airpurifier.json +450 -0
- package/docs/mock-altherma-air-to-water-lan.json +845 -0
- package/docs/mock-altherma-air-to-water-wlan.json +845 -0
- package/docs/mock-d2cnd-gas-boiler.json +649 -0
- package/docs/setpointmode-vs-controlmode-vs-setpoints-vs-sensorydata.txt +6 -0
- package/homebridge-ui/README.md +35 -0
- package/homebridge-ui/public/index.html +222 -0
- package/homebridge-ui/public/script.js +796 -0
- package/homebridge-ui/public/styles.css +456 -0
- package/homebridge-ui/server.js +909 -0
- package/jest.config.ts +13 -0
- package/package.json +63 -0
- package/test/fixtures/altherma-crSense-2.ts +834 -0
- package/test/fixtures/altherma-fraction.ts +719 -0
- package/test/fixtures/altherma-heat-pump-2.ts +479 -0
- package/test/fixtures/altherma-heat-pump.ts +758 -0
- package/test/fixtures/altherma-miladcerkic-off.ts +524 -0
- package/test/fixtures/altherma-miladcerkic.ts +524 -0
- package/test/fixtures/altherma-v1ckoeln.ts +645 -0
- package/test/fixtures/altherma-with-embedded-id-zero.ts +834 -0
- package/test/fixtures/dx23-airco-2.ts +343 -0
- package/test/fixtures/dx23-airco.ts +519 -0
- package/test/fixtures/dx4-airco.ts +915 -0
- package/test/fixtures/unknown-jan.ts +489 -0
- package/test/fixtures/unknown-kitchen-guests.ts +489 -0
- package/test/hbConfig/.daikin-controller-cloud-tokenset +8 -0
- package/test/hbConfig/.uix-dashboard.json +1 -0
- package/test/hbConfig/.uix-secrets +1 -0
- package/test/hbConfig/accessories/.cachedAccessories.bak +1 -0
- package/test/hbConfig/accessories/cachedAccessories +1 -0
- package/test/hbConfig/accessories/uiAccessoriesLayout.json +1 -0
- package/test/hbConfig/auth.json +10 -0
- package/test/hbConfig/backups/config-backups/config.json.1767953686461 +25 -0
- package/test/hbConfig/backups/config-backups/config.json.1767953695236 +29 -0
- package/test/hbConfig/backups/config-backups/config.json.1767953814763 +29 -0
- package/test/hbConfig/backups/config-backups/config.json.1767953823101 +29 -0
- package/test/hbConfig/backups/config-backups/config.json.1767954822835 +29 -0
- package/test/hbConfig/backups/config-backups/config.json.1767954859218 +29 -0
- package/test/hbConfig/config.json +33 -0
- package/test/hbConfig/daikin-cloud-certs/server.crt +22 -0
- package/test/hbConfig/daikin-cloud-certs/server.key +28 -0
- package/test/hbConfig/persist/AccessoryInfo.1E4A432551BA.json +1 -0
- package/test/hbConfig/persist/IdentifierCache.1E4A432551BA.json +1 -0
- package/test/integration/air-conditioning.test.ts +396 -0
- package/test/integration/altherma.test.ts +288 -0
- package/test/integration/platform.test.ts +101 -0
- package/test/mocks/index.ts +27 -0
- package/test/unit/api/__snapshots__/daikinCloud.test.ts.snap +1323 -0
- package/test/unit/api/daikinCloud.test.ts +12 -0
- package/test/unit/device/daikin-device.test.ts +29 -0
- package/test/unit/services/hot-water-tank.service.test.ts +107 -0
|
@@ -0,0 +1,845 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"deviceModel": "Altherma",
|
|
4
|
+
"_id": "c07294f3-1202-41dd-a139-f5a466e6264e",
|
|
5
|
+
"id": "c07294f3-1202-41dd-a139-f5a466e6264e",
|
|
6
|
+
"isCloudConnectionUp": {
|
|
7
|
+
"settable": false,
|
|
8
|
+
"value": true
|
|
9
|
+
},
|
|
10
|
+
"embeddedId": "29300444-4258-4938-84aa-0296c100e13f",
|
|
11
|
+
"managementPoints": [
|
|
12
|
+
{
|
|
13
|
+
"name": {
|
|
14
|
+
"value": "My Gateway",
|
|
15
|
+
"settable": false,
|
|
16
|
+
"maxLength": 64
|
|
17
|
+
},
|
|
18
|
+
"ipAddress": {
|
|
19
|
+
"settable": false,
|
|
20
|
+
"value": "192.168.0.1"
|
|
21
|
+
},
|
|
22
|
+
"macAddress": {
|
|
23
|
+
"settable": false,
|
|
24
|
+
"value": "00:23:7e:f8:26:4e"
|
|
25
|
+
},
|
|
26
|
+
"firmwareVersion": {
|
|
27
|
+
"settable": false,
|
|
28
|
+
"value": "436CC038000"
|
|
29
|
+
},
|
|
30
|
+
"modelInfo": {
|
|
31
|
+
"settable": false,
|
|
32
|
+
"value": "BRP069A62"
|
|
33
|
+
},
|
|
34
|
+
"embeddedId": "0",
|
|
35
|
+
"managementPointType": "gateway",
|
|
36
|
+
"firmwareUpdateStatus": {
|
|
37
|
+
"value": "in-progress",
|
|
38
|
+
"settable": false,
|
|
39
|
+
"values": [
|
|
40
|
+
"in-progress",
|
|
41
|
+
"succeeded"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"managementPointCategory": "secondary"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": {
|
|
48
|
+
"value": "My mock A2W HP",
|
|
49
|
+
"settable": true,
|
|
50
|
+
"maxLength": 64
|
|
51
|
+
},
|
|
52
|
+
"controlMode": {
|
|
53
|
+
"value": "roomTemperature",
|
|
54
|
+
"settable": false,
|
|
55
|
+
"values": [
|
|
56
|
+
"roomTemperature",
|
|
57
|
+
"leavingWaterTemperature",
|
|
58
|
+
"externalRoomTemperature"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"powerfulMode": {
|
|
62
|
+
"value": "on",
|
|
63
|
+
"settable": true,
|
|
64
|
+
"values": [
|
|
65
|
+
"on",
|
|
66
|
+
"off"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"operationMode": {
|
|
70
|
+
"value": "heating",
|
|
71
|
+
"settable": true,
|
|
72
|
+
"values": [
|
|
73
|
+
"heating",
|
|
74
|
+
"cooling",
|
|
75
|
+
"auto"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"temperatureControl": {
|
|
79
|
+
"ref": "#temperatureControl",
|
|
80
|
+
"settable": true,
|
|
81
|
+
"value": {
|
|
82
|
+
"operationModes": {
|
|
83
|
+
"cooling": {
|
|
84
|
+
"setpoints": {
|
|
85
|
+
"roomTemperature": {
|
|
86
|
+
"minValue": 20,
|
|
87
|
+
"value": 25,
|
|
88
|
+
"settable": true,
|
|
89
|
+
"maxValue": 30
|
|
90
|
+
},
|
|
91
|
+
"leavingWaterTemperature": {
|
|
92
|
+
"minValue": 20,
|
|
93
|
+
"value": 21,
|
|
94
|
+
"settable": false,
|
|
95
|
+
"maxValue": 30
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"auto": {
|
|
100
|
+
"setpoints": {
|
|
101
|
+
"roomTemperature": {
|
|
102
|
+
"minValue": 20,
|
|
103
|
+
"value": 25,
|
|
104
|
+
"settable": true,
|
|
105
|
+
"maxValue": 30
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"heating": {
|
|
110
|
+
"setpoints": {
|
|
111
|
+
"roomTemperature": {
|
|
112
|
+
"minValue": 20,
|
|
113
|
+
"value": 25,
|
|
114
|
+
"settable": true,
|
|
115
|
+
"maxValue": 30
|
|
116
|
+
},
|
|
117
|
+
"leavingWaterTemperature": {
|
|
118
|
+
"minValue": 20,
|
|
119
|
+
"value": 21,
|
|
120
|
+
"settable": false,
|
|
121
|
+
"maxValue": 30
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"schedule": {
|
|
129
|
+
"ref": "#schedule",
|
|
130
|
+
"settable": true,
|
|
131
|
+
"value": {
|
|
132
|
+
"nextAction": {
|
|
133
|
+
"roomTemperature": 16,
|
|
134
|
+
"operationMode": "cooling",
|
|
135
|
+
"startTime": "10:10:00",
|
|
136
|
+
"actionPeriod": "monday"
|
|
137
|
+
},
|
|
138
|
+
"modes": {
|
|
139
|
+
"cooling": {
|
|
140
|
+
"schedules": {
|
|
141
|
+
"1": {
|
|
142
|
+
"name": {
|
|
143
|
+
"name": "name",
|
|
144
|
+
"value": "althermaClimateControlCooling2",
|
|
145
|
+
"settable": false
|
|
146
|
+
},
|
|
147
|
+
"meta": {
|
|
148
|
+
"isReadOnly": true,
|
|
149
|
+
"actionPeriods": [
|
|
150
|
+
"monday",
|
|
151
|
+
"tuesday",
|
|
152
|
+
"wednesday",
|
|
153
|
+
"thursday",
|
|
154
|
+
"friday",
|
|
155
|
+
"saturday",
|
|
156
|
+
"sunday"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
"actions": {
|
|
160
|
+
"monday": {
|
|
161
|
+
"12:10:00": {
|
|
162
|
+
"roomTemperature": 14
|
|
163
|
+
},
|
|
164
|
+
"10:10:00": {
|
|
165
|
+
"roomTemperature": 16
|
|
166
|
+
},
|
|
167
|
+
"20:40:00": {
|
|
168
|
+
"roomTemperature": 16
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"tuesday": {
|
|
172
|
+
"12:10:00": {
|
|
173
|
+
"roomTemperature": 20
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"0": {
|
|
179
|
+
"name": {
|
|
180
|
+
"name": "name",
|
|
181
|
+
"value": "althermaClimateControlCooling1",
|
|
182
|
+
"settable": false
|
|
183
|
+
},
|
|
184
|
+
"meta": {
|
|
185
|
+
"isReadOnly": true,
|
|
186
|
+
"actionPeriods": [
|
|
187
|
+
"monday",
|
|
188
|
+
"tuesday",
|
|
189
|
+
"wednesday",
|
|
190
|
+
"thursday",
|
|
191
|
+
"friday",
|
|
192
|
+
"saturday",
|
|
193
|
+
"sunday"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
"actions": {
|
|
197
|
+
"monday": {
|
|
198
|
+
"12:10:00": {
|
|
199
|
+
"roomTemperature": 14
|
|
200
|
+
},
|
|
201
|
+
"10:10:00": {
|
|
202
|
+
"roomTemperature": 16
|
|
203
|
+
},
|
|
204
|
+
"20:40:00": {
|
|
205
|
+
"roomTemperature": 16
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"tuesday": {
|
|
209
|
+
"12:10:00": {
|
|
210
|
+
"roomTemperature": 20
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"meta": {
|
|
217
|
+
"maxSchedules": 3,
|
|
218
|
+
"maxActionsPerActionPeriod": 6,
|
|
219
|
+
"consecutiveActionsAllowed": true,
|
|
220
|
+
"actionTypes": {
|
|
221
|
+
"roomTemperature": {
|
|
222
|
+
"name": "roomTemperature",
|
|
223
|
+
"settable": false,
|
|
224
|
+
"stepValue": 1,
|
|
225
|
+
"minValue": 5,
|
|
226
|
+
"maxValue": 30
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"minIntervalBetweenActions": "00:10:00"
|
|
230
|
+
},
|
|
231
|
+
"currentSchedule": {
|
|
232
|
+
"name": "currentSchedule",
|
|
233
|
+
"value": "0",
|
|
234
|
+
"settable": true,
|
|
235
|
+
"values": [
|
|
236
|
+
"0",
|
|
237
|
+
"1"
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
"enabled": {
|
|
241
|
+
"name": "enabled",
|
|
242
|
+
"value": true,
|
|
243
|
+
"settable": false
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"heating": {
|
|
247
|
+
"schedules": {
|
|
248
|
+
"2": {
|
|
249
|
+
"name": {
|
|
250
|
+
"name": "name",
|
|
251
|
+
"value": "althermaClimateControl2",
|
|
252
|
+
"settable": false
|
|
253
|
+
},
|
|
254
|
+
"meta": {
|
|
255
|
+
"isReadOnly": true,
|
|
256
|
+
"actionPeriods": [
|
|
257
|
+
"monday",
|
|
258
|
+
"tuesday",
|
|
259
|
+
"wednesday",
|
|
260
|
+
"thursday",
|
|
261
|
+
"friday",
|
|
262
|
+
"saturday",
|
|
263
|
+
"sunday"
|
|
264
|
+
]
|
|
265
|
+
},
|
|
266
|
+
"actions": {
|
|
267
|
+
"thursday": {
|
|
268
|
+
"12:10:00": {
|
|
269
|
+
"roomTemperature": 16
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"friday": {
|
|
273
|
+
"12:10:00": {
|
|
274
|
+
"roomTemperature": 16
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"wednesday": {
|
|
278
|
+
"12:10:00": {
|
|
279
|
+
"roomTemperature": 16
|
|
280
|
+
},
|
|
281
|
+
"10:10:00": {
|
|
282
|
+
"roomTemperature": 16
|
|
283
|
+
},
|
|
284
|
+
"20:40:00": {
|
|
285
|
+
"roomTemperature": 16
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"1": {
|
|
291
|
+
"name": {
|
|
292
|
+
"name": "name",
|
|
293
|
+
"value": "althermaClimateControl1",
|
|
294
|
+
"settable": false
|
|
295
|
+
},
|
|
296
|
+
"meta": {
|
|
297
|
+
"isReadOnly": false,
|
|
298
|
+
"actionPeriods": [
|
|
299
|
+
"monday",
|
|
300
|
+
"tuesday",
|
|
301
|
+
"wednesday",
|
|
302
|
+
"thursday",
|
|
303
|
+
"friday",
|
|
304
|
+
"saturday",
|
|
305
|
+
"sunday"
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
"actions": {
|
|
309
|
+
"monday": {
|
|
310
|
+
"12:10:00": {
|
|
311
|
+
"roomTemperature": 16
|
|
312
|
+
},
|
|
313
|
+
"10:10:00": {
|
|
314
|
+
"roomTemperature": 16
|
|
315
|
+
},
|
|
316
|
+
"20:40:00": {
|
|
317
|
+
"roomTemperature": 16
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"tuesday": {
|
|
321
|
+
"12:10:00": {
|
|
322
|
+
"roomTemperature": 16
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"0": {
|
|
328
|
+
"name": {
|
|
329
|
+
"name": "name",
|
|
330
|
+
"value": "althermaClimateControl0",
|
|
331
|
+
"settable": false
|
|
332
|
+
},
|
|
333
|
+
"meta": {
|
|
334
|
+
"isReadOnly": false,
|
|
335
|
+
"actionPeriods": [
|
|
336
|
+
"monday",
|
|
337
|
+
"tuesday",
|
|
338
|
+
"wednesday",
|
|
339
|
+
"thursday",
|
|
340
|
+
"friday",
|
|
341
|
+
"saturday",
|
|
342
|
+
"sunday"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
"actions": {
|
|
346
|
+
"monday": {
|
|
347
|
+
"10:10:00": {
|
|
348
|
+
"roomTemperature": 16
|
|
349
|
+
},
|
|
350
|
+
"12:10:00": {
|
|
351
|
+
"roomTemperature": 16
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"tuesday": {
|
|
355
|
+
"12:10:00": {
|
|
356
|
+
"roomTemperature": 16
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"meta": {
|
|
363
|
+
"maxSchedules": 3,
|
|
364
|
+
"maxActionsPerActionPeriod": 6,
|
|
365
|
+
"consecutiveActionsAllowed": true,
|
|
366
|
+
"actionTypes": {
|
|
367
|
+
"roomTemperature": {
|
|
368
|
+
"name": "roomTemperature",
|
|
369
|
+
"settable": false,
|
|
370
|
+
"stepValue": 1,
|
|
371
|
+
"minValue": 20,
|
|
372
|
+
"maxValue": 30
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"minIntervalBetweenActions": "00:10:00"
|
|
376
|
+
},
|
|
377
|
+
"currentSchedule": {
|
|
378
|
+
"name": "currentSchedule",
|
|
379
|
+
"value": "0",
|
|
380
|
+
"settable": true,
|
|
381
|
+
"values": [
|
|
382
|
+
"0",
|
|
383
|
+
"1",
|
|
384
|
+
"2"
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
"enabled": {
|
|
388
|
+
"name": "enabled",
|
|
389
|
+
"value": false,
|
|
390
|
+
"settable": true
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"currentMode": {
|
|
395
|
+
"name": "currentMode",
|
|
396
|
+
"value": "heating",
|
|
397
|
+
"settable": true,
|
|
398
|
+
"values": [
|
|
399
|
+
"heating",
|
|
400
|
+
"cooling"
|
|
401
|
+
]
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"holidayMode": {
|
|
406
|
+
"ref": "#holidayMode",
|
|
407
|
+
"settable": true,
|
|
408
|
+
"value": {
|
|
409
|
+
"endDate": "2019-11-15",
|
|
410
|
+
"enabled": true,
|
|
411
|
+
"startDate": "2018-11-13"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"managementPointSubType": "mainZone",
|
|
415
|
+
"onOffMode": {
|
|
416
|
+
"value": "on",
|
|
417
|
+
"settable": true,
|
|
418
|
+
"values": [
|
|
419
|
+
"on",
|
|
420
|
+
"off"
|
|
421
|
+
]
|
|
422
|
+
},
|
|
423
|
+
"sensoryData": {
|
|
424
|
+
"ref": "#sensoryData",
|
|
425
|
+
"settable": false,
|
|
426
|
+
"value": {
|
|
427
|
+
"roomTemperature": {
|
|
428
|
+
"settable": false,
|
|
429
|
+
"value": 20
|
|
430
|
+
},
|
|
431
|
+
"outdoorTemperature": {
|
|
432
|
+
"settable": false,
|
|
433
|
+
"value": 25
|
|
434
|
+
},
|
|
435
|
+
"leavingWaterTemperature": {
|
|
436
|
+
"settable": false,
|
|
437
|
+
"value": 12
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"isPowerfulModeActive": {
|
|
442
|
+
"settable": false,
|
|
443
|
+
"value": true
|
|
444
|
+
},
|
|
445
|
+
"consumptionData": {
|
|
446
|
+
"ref": "#consumptionData",
|
|
447
|
+
"settable": false,
|
|
448
|
+
"value": {
|
|
449
|
+
"electrical": {
|
|
450
|
+
"cooling": {
|
|
451
|
+
"m": [
|
|
452
|
+
null,
|
|
453
|
+
null,
|
|
454
|
+
null,
|
|
455
|
+
null,
|
|
456
|
+
null,
|
|
457
|
+
null,
|
|
458
|
+
null,
|
|
459
|
+
null,
|
|
460
|
+
null,
|
|
461
|
+
null,
|
|
462
|
+
null,
|
|
463
|
+
null,
|
|
464
|
+
null,
|
|
465
|
+
null,
|
|
466
|
+
null,
|
|
467
|
+
null,
|
|
468
|
+
null,
|
|
469
|
+
null,
|
|
470
|
+
null,
|
|
471
|
+
null,
|
|
472
|
+
null,
|
|
473
|
+
null,
|
|
474
|
+
null,
|
|
475
|
+
264
|
|
476
|
+
],
|
|
477
|
+
"d": [
|
|
478
|
+
null,
|
|
479
|
+
null,
|
|
480
|
+
null,
|
|
481
|
+
1,
|
|
482
|
+
2,
|
|
483
|
+
0,
|
|
484
|
+
2,
|
|
485
|
+
3,
|
|
486
|
+
0,
|
|
487
|
+
1,
|
|
488
|
+
1,
|
|
489
|
+
1,
|
|
490
|
+
1,
|
|
491
|
+
2,
|
|
492
|
+
1,
|
|
493
|
+
1,
|
|
494
|
+
2,
|
|
495
|
+
3,
|
|
496
|
+
1,
|
|
497
|
+
5,
|
|
498
|
+
7,
|
|
499
|
+
1,
|
|
500
|
+
2,
|
|
501
|
+
null
|
|
502
|
+
],
|
|
503
|
+
"w": [
|
|
504
|
+
null,
|
|
505
|
+
null,
|
|
506
|
+
null,
|
|
507
|
+
null,
|
|
508
|
+
100,
|
|
509
|
+
30,
|
|
510
|
+
130,
|
|
511
|
+
null,
|
|
512
|
+
null,
|
|
513
|
+
null,
|
|
514
|
+
null,
|
|
515
|
+
100,
|
|
516
|
+
30,
|
|
517
|
+
130
|
|
518
|
+
]
|
|
519
|
+
},
|
|
520
|
+
"unit": "kWh",
|
|
521
|
+
"heating": {
|
|
522
|
+
"m": [
|
|
523
|
+
null,
|
|
524
|
+
null,
|
|
525
|
+
null,
|
|
526
|
+
null,
|
|
527
|
+
null,
|
|
528
|
+
null,
|
|
529
|
+
null,
|
|
530
|
+
null,
|
|
531
|
+
null,
|
|
532
|
+
null,
|
|
533
|
+
null,
|
|
534
|
+
null,
|
|
535
|
+
null,
|
|
536
|
+
null,
|
|
537
|
+
null,
|
|
538
|
+
null,
|
|
539
|
+
null,
|
|
540
|
+
null,
|
|
541
|
+
null,
|
|
542
|
+
null,
|
|
543
|
+
null,
|
|
544
|
+
null,
|
|
545
|
+
null,
|
|
546
|
+
264
|
|
547
|
+
],
|
|
548
|
+
"d": [
|
|
549
|
+
null,
|
|
550
|
+
null,
|
|
551
|
+
null,
|
|
552
|
+
1,
|
|
553
|
+
2,
|
|
554
|
+
0,
|
|
555
|
+
2,
|
|
556
|
+
3,
|
|
557
|
+
0,
|
|
558
|
+
1,
|
|
559
|
+
1,
|
|
560
|
+
1,
|
|
561
|
+
1,
|
|
562
|
+
2,
|
|
563
|
+
1,
|
|
564
|
+
1,
|
|
565
|
+
2,
|
|
566
|
+
3,
|
|
567
|
+
1,
|
|
568
|
+
5,
|
|
569
|
+
7,
|
|
570
|
+
1,
|
|
571
|
+
2,
|
|
572
|
+
null
|
|
573
|
+
],
|
|
574
|
+
"w": [
|
|
575
|
+
null,
|
|
576
|
+
null,
|
|
577
|
+
null,
|
|
578
|
+
null,
|
|
579
|
+
100,
|
|
580
|
+
30,
|
|
581
|
+
130,
|
|
582
|
+
null,
|
|
583
|
+
null,
|
|
584
|
+
null,
|
|
585
|
+
null,
|
|
586
|
+
100,
|
|
587
|
+
30,
|
|
588
|
+
130
|
|
589
|
+
]
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"setpointMode": {
|
|
595
|
+
"value": "weatherDependent",
|
|
596
|
+
"settable": false,
|
|
597
|
+
"values": [
|
|
598
|
+
"weatherDependent",
|
|
599
|
+
"fixed",
|
|
600
|
+
"weatherDependentHeatingFixedCooling"
|
|
601
|
+
]
|
|
602
|
+
},
|
|
603
|
+
"embeddedId": "1",
|
|
604
|
+
"managementPointType": "climateControl",
|
|
605
|
+
"isHolidayModeActive": {
|
|
606
|
+
"settable": false,
|
|
607
|
+
"value": true
|
|
608
|
+
},
|
|
609
|
+
"managementPointCategory": "primary"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"name": {
|
|
613
|
+
"value": "Tank",
|
|
614
|
+
"settable": false,
|
|
615
|
+
"maxLength": 63
|
|
616
|
+
},
|
|
617
|
+
"powerfulMode": {
|
|
618
|
+
"value": "off",
|
|
619
|
+
"settable": true,
|
|
620
|
+
"values": [
|
|
621
|
+
"off",
|
|
622
|
+
"on"
|
|
623
|
+
]
|
|
624
|
+
},
|
|
625
|
+
"operationMode": {
|
|
626
|
+
"value": "heating",
|
|
627
|
+
"settable": false,
|
|
628
|
+
"values": [
|
|
629
|
+
"heating"
|
|
630
|
+
]
|
|
631
|
+
},
|
|
632
|
+
"temperatureControl": {
|
|
633
|
+
"ref": "#temperatureControl",
|
|
634
|
+
"settable": false,
|
|
635
|
+
"value": {
|
|
636
|
+
"operationModes": {
|
|
637
|
+
"heating": {
|
|
638
|
+
"setpoints": {
|
|
639
|
+
"domesticHotWaterTemperature": {
|
|
640
|
+
"settable": true,
|
|
641
|
+
"stepValue": 1,
|
|
642
|
+
"value": 45,
|
|
643
|
+
"minValue": 30,
|
|
644
|
+
"maxValue": 60
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"heatupMode": {
|
|
652
|
+
"value": "reheatOnly",
|
|
653
|
+
"settable": false,
|
|
654
|
+
"values": [
|
|
655
|
+
"reheatOnly",
|
|
656
|
+
"reheatSchedule",
|
|
657
|
+
"scheduleOnly"
|
|
658
|
+
]
|
|
659
|
+
},
|
|
660
|
+
"isInErrorState": {
|
|
661
|
+
"settable": false,
|
|
662
|
+
"value": false
|
|
663
|
+
},
|
|
664
|
+
"isInWarningState": {
|
|
665
|
+
"settable": false,
|
|
666
|
+
"value": false
|
|
667
|
+
},
|
|
668
|
+
"managementPointCategory": "primary",
|
|
669
|
+
"isInInstallerState": {
|
|
670
|
+
"settable": false,
|
|
671
|
+
"value": false
|
|
672
|
+
},
|
|
673
|
+
"isInEmergencyState": {
|
|
674
|
+
"settable": false,
|
|
675
|
+
"value": false
|
|
676
|
+
},
|
|
677
|
+
"onOffMode": {
|
|
678
|
+
"value": "off",
|
|
679
|
+
"settable": true,
|
|
680
|
+
"values": [
|
|
681
|
+
"off",
|
|
682
|
+
"on"
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
"sensoryData": {
|
|
686
|
+
"ref": "#sensoryData",
|
|
687
|
+
"settable": false,
|
|
688
|
+
"value": {
|
|
689
|
+
"tankTemperature": {
|
|
690
|
+
"settable": false,
|
|
691
|
+
"stepValue": 1,
|
|
692
|
+
"value": 53,
|
|
693
|
+
"minValue": -127,
|
|
694
|
+
"maxValue": 127
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"errorCode": {
|
|
699
|
+
"value": "",
|
|
700
|
+
"settable": false,
|
|
701
|
+
"maxLength": 16
|
|
702
|
+
},
|
|
703
|
+
"consumptionData": {
|
|
704
|
+
"requiresReboot": false,
|
|
705
|
+
"ref": "#consumptionData",
|
|
706
|
+
"settable": false,
|
|
707
|
+
"value": {
|
|
708
|
+
"electrical": {
|
|
709
|
+
"heating": {
|
|
710
|
+
"m": [
|
|
711
|
+
null,
|
|
712
|
+
null,
|
|
713
|
+
null,
|
|
714
|
+
null,
|
|
715
|
+
null,
|
|
716
|
+
null,
|
|
717
|
+
null,
|
|
718
|
+
null,
|
|
719
|
+
null,
|
|
720
|
+
null,
|
|
721
|
+
null,
|
|
722
|
+
null,
|
|
723
|
+
null,
|
|
724
|
+
229,
|
|
725
|
+
0,
|
|
726
|
+
0,
|
|
727
|
+
null,
|
|
728
|
+
null,
|
|
729
|
+
null,
|
|
730
|
+
null,
|
|
731
|
+
null,
|
|
732
|
+
null,
|
|
733
|
+
null,
|
|
734
|
+
null
|
|
735
|
+
],
|
|
736
|
+
"d": [
|
|
737
|
+
0,
|
|
738
|
+
0,
|
|
739
|
+
0,
|
|
740
|
+
0,
|
|
741
|
+
0,
|
|
742
|
+
0,
|
|
743
|
+
0,
|
|
744
|
+
0,
|
|
745
|
+
0,
|
|
746
|
+
0,
|
|
747
|
+
0,
|
|
748
|
+
0,
|
|
749
|
+
null,
|
|
750
|
+
null,
|
|
751
|
+
null,
|
|
752
|
+
null,
|
|
753
|
+
null,
|
|
754
|
+
null,
|
|
755
|
+
null,
|
|
756
|
+
null,
|
|
757
|
+
null,
|
|
758
|
+
null,
|
|
759
|
+
null,
|
|
760
|
+
null
|
|
761
|
+
],
|
|
762
|
+
"w": [
|
|
763
|
+
0,
|
|
764
|
+
0,
|
|
765
|
+
0,
|
|
766
|
+
0,
|
|
767
|
+
0,
|
|
768
|
+
0,
|
|
769
|
+
0,
|
|
770
|
+
0,
|
|
771
|
+
0,
|
|
772
|
+
0,
|
|
773
|
+
0,
|
|
774
|
+
0,
|
|
775
|
+
0,
|
|
776
|
+
null
|
|
777
|
+
]
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"setpointMode": {
|
|
783
|
+
"value": "fixed",
|
|
784
|
+
"settable": false,
|
|
785
|
+
"values": [
|
|
786
|
+
"fixed",
|
|
787
|
+
"weatherDependent"
|
|
788
|
+
]
|
|
789
|
+
},
|
|
790
|
+
"embeddedId": "2",
|
|
791
|
+
"managementPointType": "domesticHotWaterTank",
|
|
792
|
+
"isHolidayModeActive": {
|
|
793
|
+
"settable": false,
|
|
794
|
+
"value": false
|
|
795
|
+
},
|
|
796
|
+
"isPowerfulModeActive": {
|
|
797
|
+
"settable": false,
|
|
798
|
+
"value": false
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"modelInfo": {
|
|
803
|
+
"settable": false,
|
|
804
|
+
"value": "EHVH08S18CB3V"
|
|
805
|
+
},
|
|
806
|
+
"embeddedId": "3",
|
|
807
|
+
"managementPointType": "indoorUnitHydro",
|
|
808
|
+
"softwareVersion": {
|
|
809
|
+
"settable": false,
|
|
810
|
+
"value": "ID66F2"
|
|
811
|
+
},
|
|
812
|
+
"managementPointCategory": "secondary"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"modelInfo": {
|
|
816
|
+
"settable": false,
|
|
817
|
+
"value": "EHVH08S18CB3V"
|
|
818
|
+
},
|
|
819
|
+
"embeddedId": "3",
|
|
820
|
+
"managementPointType": "indoorUnitHydro",
|
|
821
|
+
"softwareVersion": {
|
|
822
|
+
"settable": false,
|
|
823
|
+
"value": "ID66F2"
|
|
824
|
+
},
|
|
825
|
+
"managementPointCategory": "secondary"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"embeddedId": "4",
|
|
829
|
+
"managementPointType": "outdoorUnit",
|
|
830
|
+
"softwareVersion": {
|
|
831
|
+
"settable": false,
|
|
832
|
+
"value": "ID0000"
|
|
833
|
+
},
|
|
834
|
+
"managementPointCategory": "secondary"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"embeddedId": "5",
|
|
838
|
+
"managementPointType": "userInterface",
|
|
839
|
+
"managementPointCategory": "secondary"
|
|
840
|
+
}
|
|
841
|
+
],
|
|
842
|
+
"type": "heating",
|
|
843
|
+
"timestamp": "2018-11-13T20:20:39.000Z"
|
|
844
|
+
}
|
|
845
|
+
]
|