@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,489 @@
|
|
|
1
|
+
// Unknown from: https://github.com/mp-consulting/homebridge-daikin-cloud/issues/50
|
|
2
|
+
export const unknownKitchenGuests = {
|
|
3
|
+
'_id': '60f60b43-0d09-4084-94a0-d7a71020001f',
|
|
4
|
+
'error': 'INVALID_GATEWAY_DEVICE',
|
|
5
|
+
'type': 'dx4',
|
|
6
|
+
'deviceModel': 'dx4',
|
|
7
|
+
'isCloudConnectionUp': {
|
|
8
|
+
'settable': false,
|
|
9
|
+
'value': true,
|
|
10
|
+
},
|
|
11
|
+
'managementPoints': [
|
|
12
|
+
{
|
|
13
|
+
'embeddedId': 'gateway',
|
|
14
|
+
'managementPointType': 'gateway',
|
|
15
|
+
'managementPointSubType': null,
|
|
16
|
+
'managementPointCategory': 'secondary',
|
|
17
|
+
'daylightSavingTimeEnabled': {
|
|
18
|
+
'settable': true,
|
|
19
|
+
'value': true,
|
|
20
|
+
},
|
|
21
|
+
'errorCode': {
|
|
22
|
+
'settable': false,
|
|
23
|
+
'value': '',
|
|
24
|
+
},
|
|
25
|
+
'firmwareVersion': {
|
|
26
|
+
'settable': false,
|
|
27
|
+
'value': '1_28_0',
|
|
28
|
+
},
|
|
29
|
+
'isFirmwareUpdateSupported': {
|
|
30
|
+
'settable': false,
|
|
31
|
+
'value': true,
|
|
32
|
+
},
|
|
33
|
+
'isInErrorState': {
|
|
34
|
+
'settable': false,
|
|
35
|
+
'value': false,
|
|
36
|
+
},
|
|
37
|
+
'ledEnabled': {
|
|
38
|
+
'settable': true,
|
|
39
|
+
'value': true,
|
|
40
|
+
},
|
|
41
|
+
'ipAddress': {
|
|
42
|
+
'settable': false,
|
|
43
|
+
'value': '192.168.1.172',
|
|
44
|
+
},
|
|
45
|
+
'macAddress': {
|
|
46
|
+
'settable': false,
|
|
47
|
+
'value': '50:26:ef:a6:c1:9a',
|
|
48
|
+
},
|
|
49
|
+
'modelInfo': {
|
|
50
|
+
'settable': false,
|
|
51
|
+
'value': 'BRP069C5x',
|
|
52
|
+
},
|
|
53
|
+
'regionCode': {
|
|
54
|
+
'settable': false,
|
|
55
|
+
'value': 'eu',
|
|
56
|
+
},
|
|
57
|
+
'serialNumber': {
|
|
58
|
+
'settable': false,
|
|
59
|
+
'value': '0000000006756438',
|
|
60
|
+
},
|
|
61
|
+
'ssid': {
|
|
62
|
+
'settable': false,
|
|
63
|
+
'value': 'DaikinAP69089',
|
|
64
|
+
},
|
|
65
|
+
'timeZone': {
|
|
66
|
+
'settable': true,
|
|
67
|
+
'value': 'Europe/Madrid',
|
|
68
|
+
},
|
|
69
|
+
'wifiConnectionSSID': {
|
|
70
|
+
'settable': false,
|
|
71
|
+
'value': 'Nosotros',
|
|
72
|
+
},
|
|
73
|
+
'wifiConnectionStrength': {
|
|
74
|
+
'settable': false,
|
|
75
|
+
'value': -42,
|
|
76
|
+
'maxValue': 0,
|
|
77
|
+
'minValue': -90,
|
|
78
|
+
'stepValue': 1,
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
'embeddedId': 'climateControl',
|
|
83
|
+
'managementPointType': 'climateControl',
|
|
84
|
+
'managementPointSubType': 'mainZone',
|
|
85
|
+
'managementPointCategory': 'primary',
|
|
86
|
+
'errorCode': {
|
|
87
|
+
'settable': false,
|
|
88
|
+
'value': '-',
|
|
89
|
+
},
|
|
90
|
+
'fanControl': {
|
|
91
|
+
'ref': '#fanControl',
|
|
92
|
+
'settable': true,
|
|
93
|
+
'value': {
|
|
94
|
+
'operationModes': {
|
|
95
|
+
'cooling': {
|
|
96
|
+
'fanSpeed': {
|
|
97
|
+
'currentMode': {
|
|
98
|
+
'value': 'auto',
|
|
99
|
+
'settable': true,
|
|
100
|
+
'values': [
|
|
101
|
+
'auto',
|
|
102
|
+
'fixed',
|
|
103
|
+
],
|
|
104
|
+
},
|
|
105
|
+
'modes': {
|
|
106
|
+
'fixed': {
|
|
107
|
+
'value': 1,
|
|
108
|
+
'stepValue': 1,
|
|
109
|
+
'minValue': 1,
|
|
110
|
+
'maxValue': 3,
|
|
111
|
+
'settable': true,
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
'fanOnly': {
|
|
117
|
+
'fanSpeed': {
|
|
118
|
+
'currentMode': {
|
|
119
|
+
'value': 'auto',
|
|
120
|
+
'settable': true,
|
|
121
|
+
'values': [
|
|
122
|
+
'auto',
|
|
123
|
+
'fixed',
|
|
124
|
+
],
|
|
125
|
+
},
|
|
126
|
+
'modes': {
|
|
127
|
+
'fixed': {
|
|
128
|
+
'value': 3,
|
|
129
|
+
'stepValue': 1,
|
|
130
|
+
'minValue': 1,
|
|
131
|
+
'maxValue': 3,
|
|
132
|
+
'settable': true,
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
'holidayMode': {
|
|
141
|
+
'ref': '#holidayMode',
|
|
142
|
+
'settable': true,
|
|
143
|
+
'value': {
|
|
144
|
+
'enabled': false,
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
'iconId': {
|
|
148
|
+
'settable': true,
|
|
149
|
+
'maxValue': 255,
|
|
150
|
+
'minValue': 0,
|
|
151
|
+
'value': 15,
|
|
152
|
+
},
|
|
153
|
+
'isCoolHeatMaster': {
|
|
154
|
+
'settable': false,
|
|
155
|
+
'value': false,
|
|
156
|
+
},
|
|
157
|
+
'isFilterSignOn': {
|
|
158
|
+
'settable': false,
|
|
159
|
+
'value': false,
|
|
160
|
+
},
|
|
161
|
+
'isHolidayModeActive': {
|
|
162
|
+
'settable': false,
|
|
163
|
+
'value': false,
|
|
164
|
+
},
|
|
165
|
+
'isInCautionState': {
|
|
166
|
+
'settable': false,
|
|
167
|
+
'value': false,
|
|
168
|
+
},
|
|
169
|
+
'isInErrorState': {
|
|
170
|
+
'settable': false,
|
|
171
|
+
'value': false,
|
|
172
|
+
},
|
|
173
|
+
'isInWarningState': {
|
|
174
|
+
'settable': false,
|
|
175
|
+
'value': false,
|
|
176
|
+
},
|
|
177
|
+
'isLockFunctionEnabled': {
|
|
178
|
+
'settable': false,
|
|
179
|
+
'value': false,
|
|
180
|
+
},
|
|
181
|
+
'isRefrigerantLeaking': {
|
|
182
|
+
'settable': false,
|
|
183
|
+
'value': false,
|
|
184
|
+
},
|
|
185
|
+
'name': {
|
|
186
|
+
'settable': true,
|
|
187
|
+
'maxLength': 20,
|
|
188
|
+
'value': 'Kitchen Guest',
|
|
189
|
+
},
|
|
190
|
+
'onOffMode': {
|
|
191
|
+
'settable': true,
|
|
192
|
+
'values': [
|
|
193
|
+
'on',
|
|
194
|
+
'off',
|
|
195
|
+
],
|
|
196
|
+
'value': 'off',
|
|
197
|
+
},
|
|
198
|
+
'operationMode': {
|
|
199
|
+
'settable': true,
|
|
200
|
+
'value': 'cooling',
|
|
201
|
+
'values': [
|
|
202
|
+
'fanOnly',
|
|
203
|
+
'cooling',
|
|
204
|
+
'dry',
|
|
205
|
+
],
|
|
206
|
+
},
|
|
207
|
+
'schedule': {
|
|
208
|
+
'ref': '#schedule',
|
|
209
|
+
'settable': true,
|
|
210
|
+
'value': {
|
|
211
|
+
'currentMode': {
|
|
212
|
+
'value': 'any',
|
|
213
|
+
'settable': true,
|
|
214
|
+
'values': [
|
|
215
|
+
'any',
|
|
216
|
+
],
|
|
217
|
+
},
|
|
218
|
+
'nextAction': {},
|
|
219
|
+
'modes': {
|
|
220
|
+
'any': {
|
|
221
|
+
'currentSchedule': {
|
|
222
|
+
'value': '0',
|
|
223
|
+
'settable': true,
|
|
224
|
+
'values': [
|
|
225
|
+
'0',
|
|
226
|
+
'1',
|
|
227
|
+
'2',
|
|
228
|
+
],
|
|
229
|
+
},
|
|
230
|
+
'enabled': {
|
|
231
|
+
'value': false,
|
|
232
|
+
'settable': true,
|
|
233
|
+
},
|
|
234
|
+
'meta': {
|
|
235
|
+
'minIntervalBetweenActions': '00:01:00',
|
|
236
|
+
'maxSchedules': 1,
|
|
237
|
+
'maxActionsPerActionPeriod': 6,
|
|
238
|
+
'consecutiveActionsAllowed': true,
|
|
239
|
+
'actionTypes': {
|
|
240
|
+
'operationMode': {
|
|
241
|
+
'settable': false,
|
|
242
|
+
'values': [
|
|
243
|
+
'heating',
|
|
244
|
+
'cooling',
|
|
245
|
+
'fanOnly',
|
|
246
|
+
'dry',
|
|
247
|
+
'off',
|
|
248
|
+
],
|
|
249
|
+
},
|
|
250
|
+
'roomTemperature': {
|
|
251
|
+
'heating': {
|
|
252
|
+
'settable': false,
|
|
253
|
+
'stepValue': 0.5,
|
|
254
|
+
'minValue': 16,
|
|
255
|
+
'maxValue': 32,
|
|
256
|
+
},
|
|
257
|
+
'cooling': {
|
|
258
|
+
'settable': false,
|
|
259
|
+
'stepValue': 0.5,
|
|
260
|
+
'minValue': 16,
|
|
261
|
+
'maxValue': 32,
|
|
262
|
+
},
|
|
263
|
+
},
|
|
264
|
+
'fanSpeed': {
|
|
265
|
+
'heating': {
|
|
266
|
+
'currentMode': {
|
|
267
|
+
'settable': false,
|
|
268
|
+
'values': [
|
|
269
|
+
'auto',
|
|
270
|
+
'fixed',
|
|
271
|
+
],
|
|
272
|
+
},
|
|
273
|
+
'modes': {
|
|
274
|
+
'fixed': {
|
|
275
|
+
'stepValue': 1,
|
|
276
|
+
'minValue': 1,
|
|
277
|
+
'maxValue': 3,
|
|
278
|
+
'settable': false,
|
|
279
|
+
},
|
|
280
|
+
},
|
|
281
|
+
},
|
|
282
|
+
'cooling': {
|
|
283
|
+
'currentMode': {
|
|
284
|
+
'settable': false,
|
|
285
|
+
'values': [
|
|
286
|
+
'auto',
|
|
287
|
+
'fixed',
|
|
288
|
+
],
|
|
289
|
+
},
|
|
290
|
+
'modes': {
|
|
291
|
+
'fixed': {
|
|
292
|
+
'stepValue': 1,
|
|
293
|
+
'minValue': 1,
|
|
294
|
+
'maxValue': 3,
|
|
295
|
+
'settable': false,
|
|
296
|
+
},
|
|
297
|
+
},
|
|
298
|
+
},
|
|
299
|
+
'fanOnly': {
|
|
300
|
+
'currentMode': {
|
|
301
|
+
'settable': false,
|
|
302
|
+
'values': [
|
|
303
|
+
'auto',
|
|
304
|
+
'fixed',
|
|
305
|
+
],
|
|
306
|
+
},
|
|
307
|
+
'modes': {
|
|
308
|
+
'fixed': {
|
|
309
|
+
'stepValue': 1,
|
|
310
|
+
'minValue': 1,
|
|
311
|
+
'maxValue': 3,
|
|
312
|
+
'settable': false,
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
},
|
|
316
|
+
},
|
|
317
|
+
},
|
|
318
|
+
},
|
|
319
|
+
'schedules': {
|
|
320
|
+
'0': {
|
|
321
|
+
'name': {
|
|
322
|
+
'maxLength': 32,
|
|
323
|
+
'settable': true,
|
|
324
|
+
'value': '',
|
|
325
|
+
},
|
|
326
|
+
'meta': {
|
|
327
|
+
'actionPeriods': [
|
|
328
|
+
'monday',
|
|
329
|
+
'tuesday',
|
|
330
|
+
'wednesday',
|
|
331
|
+
'thursday',
|
|
332
|
+
'friday',
|
|
333
|
+
'saturday',
|
|
334
|
+
'sunday',
|
|
335
|
+
],
|
|
336
|
+
'isReadOnly': false,
|
|
337
|
+
},
|
|
338
|
+
'actions': {},
|
|
339
|
+
'settable': true,
|
|
340
|
+
},
|
|
341
|
+
'1': {
|
|
342
|
+
'name': {
|
|
343
|
+
'maxLength': 32,
|
|
344
|
+
'settable': true,
|
|
345
|
+
'value': '',
|
|
346
|
+
},
|
|
347
|
+
'meta': {
|
|
348
|
+
'actionPeriods': [
|
|
349
|
+
'monday',
|
|
350
|
+
'tuesday',
|
|
351
|
+
'wednesday',
|
|
352
|
+
'thursday',
|
|
353
|
+
'friday',
|
|
354
|
+
'saturday',
|
|
355
|
+
'sunday',
|
|
356
|
+
],
|
|
357
|
+
'isReadOnly': false,
|
|
358
|
+
},
|
|
359
|
+
'actions': {},
|
|
360
|
+
'settable': true,
|
|
361
|
+
},
|
|
362
|
+
'2': {
|
|
363
|
+
'name': {
|
|
364
|
+
'maxLength': 32,
|
|
365
|
+
'settable': true,
|
|
366
|
+
'value': '',
|
|
367
|
+
},
|
|
368
|
+
'meta': {
|
|
369
|
+
'actionPeriods': [
|
|
370
|
+
'monday',
|
|
371
|
+
'tuesday',
|
|
372
|
+
'wednesday',
|
|
373
|
+
'thursday',
|
|
374
|
+
'friday',
|
|
375
|
+
'saturday',
|
|
376
|
+
'sunday',
|
|
377
|
+
],
|
|
378
|
+
'isReadOnly': false,
|
|
379
|
+
},
|
|
380
|
+
'actions': {},
|
|
381
|
+
'settable': true,
|
|
382
|
+
},
|
|
383
|
+
},
|
|
384
|
+
},
|
|
385
|
+
},
|
|
386
|
+
},
|
|
387
|
+
},
|
|
388
|
+
'sensoryData': {
|
|
389
|
+
'ref': '#sensoryData',
|
|
390
|
+
'settable': false,
|
|
391
|
+
'value': {
|
|
392
|
+
'roomTemperature': {
|
|
393
|
+
'settable': false,
|
|
394
|
+
'unit': '°C',
|
|
395
|
+
'value': 30.1,
|
|
396
|
+
'stepValue': 0.01,
|
|
397
|
+
'minValue': -43.05,
|
|
398
|
+
'maxValue': 127,
|
|
399
|
+
},
|
|
400
|
+
},
|
|
401
|
+
},
|
|
402
|
+
'temperatureControl': {
|
|
403
|
+
'ref': '#temperatureControl',
|
|
404
|
+
'settable': true,
|
|
405
|
+
'value': {
|
|
406
|
+
'operationModes': {
|
|
407
|
+
'cooling': {
|
|
408
|
+
'setpoints': {
|
|
409
|
+
'roomTemperature': {
|
|
410
|
+
'settable': true,
|
|
411
|
+
'value': 23.5,
|
|
412
|
+
'unit': '°C',
|
|
413
|
+
'stepValue': 0.1,
|
|
414
|
+
'minValue': 16,
|
|
415
|
+
'maxValue': 32,
|
|
416
|
+
},
|
|
417
|
+
},
|
|
418
|
+
},
|
|
419
|
+
},
|
|
420
|
+
},
|
|
421
|
+
},
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
'embeddedId': 'indoorUnit',
|
|
425
|
+
'managementPointType': 'indoorUnit',
|
|
426
|
+
'managementPointSubType': null,
|
|
427
|
+
'managementPointCategory': 'secondary',
|
|
428
|
+
'modelInfo': {
|
|
429
|
+
'settable': false,
|
|
430
|
+
'value': 'FXSA50A2VEB',
|
|
431
|
+
},
|
|
432
|
+
'softwareVersion': {
|
|
433
|
+
'settable': false,
|
|
434
|
+
'value': '19000A03',
|
|
435
|
+
},
|
|
436
|
+
'sensoryData': {
|
|
437
|
+
'ref': '#sensoryData',
|
|
438
|
+
'settable': false,
|
|
439
|
+
'value': {
|
|
440
|
+
'fanMotorRotationSpeed': {
|
|
441
|
+
'settable': false,
|
|
442
|
+
'value': 0,
|
|
443
|
+
'minValue': 0,
|
|
444
|
+
'maxValue': -1,
|
|
445
|
+
'stepValue': 1,
|
|
446
|
+
'unit': 'rpm',
|
|
447
|
+
},
|
|
448
|
+
'suctionTemperature': {
|
|
449
|
+
'settable': false,
|
|
450
|
+
'value': 30.1,
|
|
451
|
+
'minValue': -43.05,
|
|
452
|
+
'maxValue': 128,
|
|
453
|
+
'stepValue': 0.01,
|
|
454
|
+
'unit': '°C',
|
|
455
|
+
},
|
|
456
|
+
},
|
|
457
|
+
},
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
'embeddedId': 'outdoorUnit',
|
|
461
|
+
'managementPointType': 'outdoorUnit',
|
|
462
|
+
'managementPointSubType': null,
|
|
463
|
+
'managementPointCategory': 'secondary',
|
|
464
|
+
'modelInfo': {
|
|
465
|
+
'settable': false,
|
|
466
|
+
'value': 'RXYSA6A7V1B',
|
|
467
|
+
},
|
|
468
|
+
'errorCode': {
|
|
469
|
+
'settable': false,
|
|
470
|
+
'value': '-',
|
|
471
|
+
},
|
|
472
|
+
'isInErrorState': {
|
|
473
|
+
'settable': false,
|
|
474
|
+
'value': false,
|
|
475
|
+
},
|
|
476
|
+
'isInWarningState': {
|
|
477
|
+
'settable': false,
|
|
478
|
+
'value': false,
|
|
479
|
+
},
|
|
480
|
+
'isInCautionState': {
|
|
481
|
+
'settable': false,
|
|
482
|
+
'value': false,
|
|
483
|
+
},
|
|
484
|
+
},
|
|
485
|
+
],
|
|
486
|
+
'embeddedId': '1395211',
|
|
487
|
+
'timestamp': '2024-01-24T19:56:47.581Z',
|
|
488
|
+
'id': '60f60b43-0d09-4084-94a0-d7a71020001f',
|
|
489
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"access_token": "eyJ0eXAiOiJhdCtKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1FVkdRa0l5TXprNE0wRTRNVFkzTnpJM1FUYzBNek16T0RRd05FRkVRVUpCTTBFd1EwRkZRZyJ9.eyJzY29wZSI6Im9wZW5pZCBvbmVjdGE6YmFzaWMuaW50ZWdyYXRpb24iLCJpYXQiOjE3Njc5NTQ4MTcsImV4cCI6MTc2Nzk1ODQxNywiYXVkIjpbImh0dHBzOi8vYXBpLm9uZWN0YS5kYWlraW5ldXJvcGUuY29tIiwiaHR0cHM6Ly9pZHAub25lY3RhLmRhaWtpbmV1cm9wZS5jb20iLCI3R0tJR1pheWdpTHBDQk5ad3lBNmU4LU4iXSwiaXNzIjoiaHR0cHM6Ly9jZGMuZGFpa2luLmV1L29pZGMvb3AvdjEuMC8zX3hSQjNqYVE2MmJWanFYVTFvbWFFc1BEVllDMFR3aTF6ZnExekhQdV81SEZUMHpXa0R2WkpTOTdZdzFsb0puVG0vIiwic3ViIjoiZTQzN2YzNTE4YWFkNDMxNGI0N2IzOTlhMzcyNjc4MDciLCJzaWQiOiJjbFJCZmpBeU1EUTFNRFV6TlRRMFlqQTRNemN6TWpNNU16Y3pNak00TXpNek5UQXlNRGM1TjM1TlMzVXdabEpNV1RsR09HMUVhVzU0Y2tOZk16WlRiblZvZGtSdVIzUnlTbTFMY2xGeFJTMXFiVzFhVmxkMU9GUjJabTFUZDB0bWVYaEVVVmRGU0RsdlNFSkRkME5wYjB3dFpWQmxOalphTW5sbmEyWk9XRkZSZmc9PSIsImp0aSI6InN0Mi5zLkF0THQ4a2MzWVEucVZCbVppMXU3NjdNTWRhYWxmRzctV1pwbk95WHV6MUIzRW5rbXhsRlk1cXB0Q3lVdlZiYlhCNXZQYnRaSUhWOGM0N1dENUVJWUhzeG5Qbkd4RXpNdi1BVVhDMkNOTEoteUZSajhMemdwcTAwcVY5d1BqRjZaVlhIQVRuZWZsTjEudG4tYjROOWc3ZWc3d0U5aVB1VXhwbVR5M3NXcU83X3hXcFA4UFppd3gwc2xWLUp3UXJVTnBSTkNZLTgzRkZ5ZWF2ZmtmYmExcTdXOTl3TXBrSWtfZncuc2MzIiwiY2xpZW50X2lkIjoiN0dLSUdaYXlnaUxwQ0JOWnd5QTZlOC1OIiwiYXpwIjoiN0dLSUdaYXlnaUxwQ0JOWnd5QTZlOC1OIn0.M0g8TuPXQF8UhW4F6ZovLE7udUOzj-7RHyJBDfg9d_DtIOUQS8Vv51IgJpZScSkwYzEdoTH8hKFzbc4ZBHVa47UdXoZ_K0oVztqy2ThhvzWtdqwX0U-NRyoT4MHNGDX9wdXPGD5LJUgIKuvcb5IjMe95UMmEOUg9G7_LrgwgGNtrkjNLg-f3nG-X_UXnhM8njKTOvh3lQWs-Sd2GZoWmNm-BedVjoRumUXtHyNVAG6h6hDNMPm7t-7rKq0YaNSqGY9ZwlSBOIwopJ3s3jsUQT16LSVN-LGnJ9Qst8HtZFkd5QRCH0sbrfRuBPEU0V6cIY5Ycge7hDJhSLr9isBfTug",
|
|
3
|
+
"token_type": "Bearer",
|
|
4
|
+
"expires_in": 3600,
|
|
5
|
+
"id_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1FVkdRa0l5TXprNE0wRTRNVFkzTnpJM1FUYzBNek16T0RRd05FRkVRVUpCTTBFd1EwRkZRZyJ9.eyJpc3MiOiJodHRwczovL2NkYy5kYWlraW4uZXUvb2lkYy9vcC92MS4wLzNfeFJCM2phUTYyYlZqcVhVMW9tYUVzUERWWUMwVHdpMXpmcTF6SFB1XzVIRlQweldrRHZaSlM5N1l3MWxvSm5UbS8iLCJleHAiOjE3OTk0OTA4MTcsImlhdCI6MTc2Nzk1NDgxNywiYXVkIjpbImh0dHBzOi8vYXBpLm9uZWN0YS5kYWlraW5ldXJvcGUuY29tIiwiaHR0cHM6Ly9pZHAub25lY3RhLmRhaWtpbmV1cm9wZS5jb20iLCI3R0tJR1pheWdpTHBDQk5ad3lBNmU4LU4iXSwiYXV0aF90aW1lIjoxNzY3OTU0ODAzLCJhenAiOiI3R0tJR1pheWdpTHBDQk5ad3lBNmU4LU4iLCJzdWIiOiJlNDM3ZjM1MThhYWQ0MzE0YjQ3YjM5OWEzNzI2NzgwNyIsImF0X2hhc2giOiJYRXRqWW1felZMR1c0WlVVRFBRMU9RIiwic2lkIjoiY2xSQmZqQXlNRFExTURVek5UUTBZakE0TXpjek1qTTVNemN6TWpNNE16TXpOVEF5TURjNU4zNU5TM1V3WmxKTVdUbEdPRzFFYVc1NGNrTmZNelpUYm5Wb2RrUnVSM1J5U20xTGNsRnhSUzFxYlcxYVZsZDFPRlIyWm0xVGQwdG1lWGhFVVZkRlNEbHZTRUpEZDBOcGIwd3RaVkJsTmpaYU1ubG5hMlpPV0ZGUmZnPT0ifQ.ac398q-WmnZeERAzkHcRwh_sl3cLWiDvnr1QrIX0fmMwAmlgAGAEFOsFQvAcZEitzCrDmY2HyE3tSy2g_r0HK990NZbXPMvg6GwO5bELCfyWOGiHro2WDktExLRrrgetRmD7AMXXpsNPKSkRpAvxzHsvuNBK1ma0uG-sCGJTMjF52L1D7sjO8vQ3e2J5IUHXnE7ZjkrdqR8Ug-DQRb01QnUc5Ogfssn-57vhLtKpftnrLwVsC7yhp0-3ZiJpyN7e3L7LB4k6MAOoPB8x8hGHQgOmvHJduQ4ThOnw003b01PE-p6C1CgXbOAPnyIY7te3NAuGGLw23yni0BsdSFwFJg",
|
|
6
|
+
"refresh_token": "st2.s.AtLt0FCaRQ.sFy0DelibBRCvsAp7_ExUjtXAxXh3qy-0IuOSBje0onwSh9fANij1hGGkv_SMbZp7O2SU6PJdWkKskat8PwSA6LHZnkhJ2UQRleed21DiCQbsBLXKwKtxvlrwDa3idYY.Q4eHMFGP3p2kKeLDliOWFzkDvotzxui_nPd-IVmDLfphl9151jU9SIrKYub93cHyxe9LMRhEVfJ_sUPgWhgpUw.sc3",
|
|
7
|
+
"expires_at": 1767958417
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"x":5,"y":0,"component":"HomebridgeStatusWidgetComponent","cols":15,"rows":3,"mobileOrder":10,"hidePort":true},{"x":5,"y":3,"component":"CpuWidgetComponent","cols":5,"rows":3,"mobileOrder":40},{"x":10,"y":3,"component":"MemoryWidgetComponent","cols":5,"rows":3,"mobileOrder":50},{"x":15,"y":3,"component":"UptimeWidgetComponent","cols":5,"rows":3,"mobileOrder":60},{"x":0,"y":9,"component":"SystemInfoWidgetComponent","cols":5,"rows":9,"mobileOrder":70},{"x":0,"y":0,"component":"HapQrcodeWidgetComponent","cols":5,"rows":9,"mobileOrder":100},{"x":5,"y":6,"component":"HomebridgeLogsWidgetComponent","cols":15,"rows":12,"mobileOrder":1000,"hideOnMobile":true}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"secretKey":"b3e948b92f77a9a8b7d19fa443d89bec970f22b9391244098d2d0d51b470e4f4"}
|