@zwave-js/config 8.10.2 → 8.11.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/config/devices/0x008b/templates/trane_template.json +33 -0
- package/config/devices/0x008b/trane_xr524.json +591 -282
- package/config/devices/0x027a/zse40.json +1 -1
- package/config/devices/0x0371/zwa024.json +5 -0
- package/config/scales.json +10 -0
- package/config/sensorTypes.json +1 -10
- package/package.json +2 -2
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schedule_hour": {
|
|
3
|
+
"description": "24-hour format",
|
|
4
|
+
"valueSize": 4,
|
|
5
|
+
"minValue": 0,
|
|
6
|
+
"maxValue": 23,
|
|
7
|
+
"defaultValue": 0,
|
|
8
|
+
"unsigned": true
|
|
9
|
+
},
|
|
10
|
+
"schedule_minute": {
|
|
11
|
+
"valueSize": 4,
|
|
12
|
+
"minValue": 0,
|
|
13
|
+
"maxValue": 59,
|
|
14
|
+
"defaultValue": 0,
|
|
15
|
+
"unsigned": true
|
|
16
|
+
},
|
|
17
|
+
"schedule_heat_setpoint": {
|
|
18
|
+
"valueSize": 4,
|
|
19
|
+
"unit": "°F",
|
|
20
|
+
"minValue": 55,
|
|
21
|
+
"maxValue": 90,
|
|
22
|
+
"defaultValue": 0,
|
|
23
|
+
"unsigned": true
|
|
24
|
+
},
|
|
25
|
+
"schedule_cool_setpoint": {
|
|
26
|
+
"valueSize": 4,
|
|
27
|
+
"unit": "°F",
|
|
28
|
+
"minValue": 60,
|
|
29
|
+
"maxValue": 99,
|
|
30
|
+
"defaultValue": 0,
|
|
31
|
+
"unsigned": true
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -16,20 +16,24 @@
|
|
|
16
16
|
"paramInformation": [
|
|
17
17
|
{
|
|
18
18
|
"#": "1",
|
|
19
|
-
"label": "
|
|
19
|
+
"label": "Outdoor Unit Type",
|
|
20
20
|
"valueSize": 1,
|
|
21
21
|
"minValue": 0,
|
|
22
|
-
"maxValue":
|
|
22
|
+
"maxValue": 2,
|
|
23
23
|
"defaultValue": 0,
|
|
24
24
|
"allowManualEntry": false,
|
|
25
25
|
"options": [
|
|
26
26
|
{
|
|
27
|
-
"label": "
|
|
27
|
+
"label": "NONE",
|
|
28
28
|
"value": 0
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
|
-
"label": "
|
|
31
|
+
"label": "AC",
|
|
32
32
|
"value": 1
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"label": "HP",
|
|
36
|
+
"value": 2
|
|
33
37
|
}
|
|
34
38
|
]
|
|
35
39
|
},
|
|
@@ -73,7 +77,7 @@
|
|
|
73
77
|
},
|
|
74
78
|
{
|
|
75
79
|
"#": "4",
|
|
76
|
-
"label": "
|
|
80
|
+
"label": "Indoor Unit Type",
|
|
77
81
|
"valueSize": 1,
|
|
78
82
|
"minValue": 0,
|
|
79
83
|
"maxValue": 1,
|
|
@@ -81,37 +85,51 @@
|
|
|
81
85
|
"allowManualEntry": false,
|
|
82
86
|
"options": [
|
|
83
87
|
{
|
|
84
|
-
"label": "
|
|
88
|
+
"label": "Gas/Oil",
|
|
85
89
|
"value": 0
|
|
86
90
|
},
|
|
87
91
|
{
|
|
88
|
-
"label": "
|
|
92
|
+
"label": "Electric",
|
|
89
93
|
"value": 1
|
|
90
94
|
}
|
|
91
95
|
]
|
|
92
96
|
},
|
|
93
97
|
{
|
|
94
|
-
"#": "
|
|
95
|
-
"label": "
|
|
98
|
+
"#": "6",
|
|
99
|
+
"label": "Indoor Heat Stages",
|
|
96
100
|
"valueSize": 1,
|
|
97
101
|
"minValue": 0,
|
|
98
|
-
"maxValue":
|
|
102
|
+
"maxValue": 2,
|
|
99
103
|
"defaultValue": 0,
|
|
100
104
|
"allowManualEntry": false,
|
|
101
105
|
"options": [
|
|
102
106
|
{
|
|
103
|
-
"label": "
|
|
107
|
+
"label": "None",
|
|
104
108
|
"value": 0
|
|
105
109
|
},
|
|
106
110
|
{
|
|
107
|
-
"label": "
|
|
111
|
+
"label": "1 Stage",
|
|
108
112
|
"value": 1
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"label": "2 Stage",
|
|
116
|
+
"value": 2
|
|
109
117
|
}
|
|
110
118
|
]
|
|
111
119
|
},
|
|
120
|
+
{
|
|
121
|
+
"#": "9",
|
|
122
|
+
"label": "Compressor Stage 1 MRT",
|
|
123
|
+
"unit": "minutes",
|
|
124
|
+
"valueSize": 1,
|
|
125
|
+
"minValue": 3,
|
|
126
|
+
"maxValue": 9,
|
|
127
|
+
"defaultValue": 0
|
|
128
|
+
},
|
|
112
129
|
{
|
|
113
130
|
"#": "10",
|
|
114
131
|
"label": "Minimum Off Time",
|
|
132
|
+
"unit": "minutes",
|
|
115
133
|
"valueSize": 1,
|
|
116
134
|
"minValue": 5,
|
|
117
135
|
"maxValue": 9,
|
|
@@ -119,23 +137,26 @@
|
|
|
119
137
|
},
|
|
120
138
|
{
|
|
121
139
|
"#": "11",
|
|
122
|
-
"label": "
|
|
140
|
+
"label": "Compressor MOT",
|
|
141
|
+
"unit": "minutes",
|
|
123
142
|
"valueSize": 1,
|
|
124
|
-
"minValue":
|
|
143
|
+
"minValue": 5,
|
|
125
144
|
"maxValue": 9,
|
|
126
|
-
"defaultValue":
|
|
145
|
+
"defaultValue": 5
|
|
127
146
|
},
|
|
128
147
|
{
|
|
129
148
|
"#": "12",
|
|
130
|
-
"label": "
|
|
149
|
+
"label": "Indoor Heat Stage 1 MRT",
|
|
150
|
+
"unit": "minutes",
|
|
131
151
|
"valueSize": 1,
|
|
132
|
-
"minValue":
|
|
133
|
-
"maxValue":
|
|
134
|
-
"defaultValue":
|
|
152
|
+
"minValue": 3,
|
|
153
|
+
"maxValue": 9,
|
|
154
|
+
"defaultValue": 3
|
|
135
155
|
},
|
|
136
156
|
{
|
|
137
157
|
"#": "13",
|
|
138
158
|
"label": "Heating Delta Stage 1 OFF",
|
|
159
|
+
"unit": "degrees",
|
|
139
160
|
"valueSize": 1,
|
|
140
161
|
"minValue": 0,
|
|
141
162
|
"maxValue": 8,
|
|
@@ -143,151 +164,93 @@
|
|
|
143
164
|
},
|
|
144
165
|
{
|
|
145
166
|
"#": "14",
|
|
146
|
-
"label": "
|
|
167
|
+
"label": "Indoor Heat MOT",
|
|
168
|
+
"unit": "minutes",
|
|
147
169
|
"valueSize": 1,
|
|
148
|
-
"minValue":
|
|
149
|
-
"maxValue":
|
|
150
|
-
"defaultValue":
|
|
170
|
+
"minValue": 5,
|
|
171
|
+
"maxValue": 9,
|
|
172
|
+
"defaultValue": 5
|
|
151
173
|
},
|
|
152
174
|
{
|
|
153
175
|
"#": "15",
|
|
154
|
-
"label": "
|
|
155
|
-
"
|
|
156
|
-
"minValue": 0,
|
|
157
|
-
"maxValue": 8,
|
|
158
|
-
"defaultValue": 0
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"#": "16",
|
|
162
|
-
"label": "Heating Delta Stage 3 ON",
|
|
163
|
-
"valueSize": 1,
|
|
164
|
-
"minValue": 1,
|
|
165
|
-
"maxValue": 8,
|
|
166
|
-
"defaultValue": 3
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"#": "17",
|
|
170
|
-
"label": "Heating Delta Stage 3 OFF",
|
|
171
|
-
"valueSize": 1,
|
|
172
|
-
"minValue": 0,
|
|
173
|
-
"maxValue": 8,
|
|
174
|
-
"defaultValue": 0
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"#": "18",
|
|
178
|
-
"label": "Cooling Delta Stage 1 ON",
|
|
179
|
-
"valueSize": 1,
|
|
180
|
-
"minValue": 1,
|
|
181
|
-
"maxValue": 8,
|
|
182
|
-
"defaultValue": 1
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"#": "19",
|
|
186
|
-
"label": "Cooling Delta Stage 1 OFF",
|
|
176
|
+
"label": "Sensor Calibration",
|
|
177
|
+
"unit": "degrees",
|
|
187
178
|
"valueSize": 1,
|
|
188
|
-
"minValue":
|
|
189
|
-
"maxValue":
|
|
179
|
+
"minValue": -7,
|
|
180
|
+
"maxValue": 7,
|
|
190
181
|
"defaultValue": 0
|
|
191
182
|
},
|
|
192
183
|
{
|
|
193
|
-
"#": "
|
|
194
|
-
"label": "
|
|
195
|
-
"
|
|
196
|
-
"minValue": 1,
|
|
197
|
-
"maxValue": 8,
|
|
198
|
-
"defaultValue": 2
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"#": "21",
|
|
202
|
-
"label": "Cooling Delta Stage 2 OFF",
|
|
184
|
+
"#": "29",
|
|
185
|
+
"label": "ESM Setpoint-Heating",
|
|
186
|
+
"unit": "degrees",
|
|
203
187
|
"valueSize": 1,
|
|
204
188
|
"minValue": 0,
|
|
205
|
-
"maxValue":
|
|
206
|
-
"defaultValue":
|
|
189
|
+
"maxValue": 100,
|
|
190
|
+
"defaultValue": 65
|
|
207
191
|
},
|
|
208
192
|
{
|
|
209
|
-
"#": "
|
|
210
|
-
"label": "
|
|
193
|
+
"#": "30",
|
|
194
|
+
"label": "ESM Setpoint-Cooling",
|
|
211
195
|
"unit": "degrees",
|
|
212
196
|
"valueSize": 1,
|
|
213
|
-
"minValue":
|
|
214
|
-
"maxValue":
|
|
215
|
-
"defaultValue":
|
|
197
|
+
"minValue": 0,
|
|
198
|
+
"maxValue": 100,
|
|
199
|
+
"defaultValue": 80
|
|
216
200
|
},
|
|
217
201
|
{
|
|
218
|
-
"#": "
|
|
219
|
-
"label": "
|
|
202
|
+
"#": "75",
|
|
203
|
+
"label": "Recovery Enable",
|
|
220
204
|
"valueSize": 1,
|
|
221
205
|
"minValue": 0,
|
|
222
|
-
"maxValue":
|
|
206
|
+
"maxValue": 1,
|
|
223
207
|
"defaultValue": 0,
|
|
224
208
|
"allowManualEntry": false,
|
|
225
209
|
"options": [
|
|
226
210
|
{
|
|
227
|
-
"label": "
|
|
211
|
+
"label": "Disable",
|
|
228
212
|
"value": 0
|
|
229
213
|
},
|
|
230
214
|
{
|
|
231
|
-
"label": "
|
|
215
|
+
"label": "Enable",
|
|
232
216
|
"value": 1
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
"label": "ESM",
|
|
236
|
-
"value": 2
|
|
237
217
|
}
|
|
238
218
|
]
|
|
239
219
|
},
|
|
240
|
-
{
|
|
241
|
-
"#": "29",
|
|
242
|
-
"label": "ESM Setpoint--Heating",
|
|
243
|
-
"unit": "degrees",
|
|
244
|
-
"valueSize": 1,
|
|
245
|
-
"minValue": 0,
|
|
246
|
-
"maxValue": 100,
|
|
247
|
-
"defaultValue": 65
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
"#": "30",
|
|
251
|
-
"label": "ESM Setpoint--Cooling",
|
|
252
|
-
"unit": "degrees",
|
|
253
|
-
"valueSize": 1,
|
|
254
|
-
"minValue": 0,
|
|
255
|
-
"maxValue": 100,
|
|
256
|
-
"defaultValue": 80
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
"#": "75",
|
|
260
|
-
"label": "Fan ON Time",
|
|
261
|
-
"unit": "minutes",
|
|
262
|
-
"valueSize": 1,
|
|
263
|
-
"minValue": 0,
|
|
264
|
-
"maxValue": 120,
|
|
265
|
-
"defaultValue": 0
|
|
266
|
-
},
|
|
267
220
|
{
|
|
268
221
|
"#": "76",
|
|
269
|
-
"label": "
|
|
270
|
-
"unit": "minutes",
|
|
222
|
+
"label": "Schedule",
|
|
271
223
|
"valueSize": 1,
|
|
272
|
-
"minValue":
|
|
273
|
-
"maxValue":
|
|
274
|
-
"defaultValue":
|
|
224
|
+
"minValue": 0,
|
|
225
|
+
"maxValue": 1,
|
|
226
|
+
"defaultValue": 0,
|
|
227
|
+
"allowManualEntry": false,
|
|
228
|
+
"options": [
|
|
229
|
+
{
|
|
230
|
+
"label": "Hold",
|
|
231
|
+
"value": 0
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"label": "Run Schedule",
|
|
235
|
+
"value": 1
|
|
236
|
+
}
|
|
237
|
+
]
|
|
275
238
|
},
|
|
276
239
|
{
|
|
277
240
|
"#": "77",
|
|
278
|
-
"label": "
|
|
241
|
+
"label": "ESM",
|
|
279
242
|
"valueSize": 1,
|
|
280
243
|
"minValue": 0,
|
|
281
|
-
"maxValue":
|
|
244
|
+
"maxValue": 2,
|
|
282
245
|
"defaultValue": 0,
|
|
283
246
|
"allowManualEntry": false,
|
|
284
247
|
"options": [
|
|
285
248
|
{
|
|
286
|
-
"label": "
|
|
249
|
+
"label": "Disable",
|
|
287
250
|
"value": 0
|
|
288
251
|
},
|
|
289
252
|
{
|
|
290
|
-
"label": "
|
|
253
|
+
"label": "Enable",
|
|
291
254
|
"value": 1
|
|
292
255
|
}
|
|
293
256
|
]
|
|
@@ -333,6 +296,7 @@
|
|
|
333
296
|
{
|
|
334
297
|
"#": "141",
|
|
335
298
|
"label": "Screen Timeout",
|
|
299
|
+
"unit": "seconds",
|
|
336
300
|
"valueSize": 1,
|
|
337
301
|
"minValue": 0,
|
|
338
302
|
"maxValue": 120,
|
|
@@ -341,6 +305,7 @@
|
|
|
341
305
|
{
|
|
342
306
|
"#": "143",
|
|
343
307
|
"label": "Sensor (Internal) Offset",
|
|
308
|
+
"unit": "degrees",
|
|
344
309
|
"valueSize": 1,
|
|
345
310
|
"minValue": -7,
|
|
346
311
|
"maxValue": 7,
|
|
@@ -355,220 +320,564 @@
|
|
|
355
320
|
"defaultValue": 10
|
|
356
321
|
},
|
|
357
322
|
{
|
|
358
|
-
"#": "228",
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
"minValue": 0,
|
|
362
|
-
"maxValue": 0,
|
|
363
|
-
"defaultValue": 0
|
|
323
|
+
"#": "228[0xff000000]",
|
|
324
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
325
|
+
"label": "Schedule - Sunday (1): Hour"
|
|
364
326
|
},
|
|
365
327
|
{
|
|
366
|
-
"#": "
|
|
367
|
-
"
|
|
368
|
-
"
|
|
369
|
-
"minValue": 0,
|
|
370
|
-
"maxValue": 0,
|
|
371
|
-
"defaultValue": 0
|
|
328
|
+
"#": "228[0xff0000]",
|
|
329
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
330
|
+
"label": "Schedule - Sunday (1): - Minute"
|
|
372
331
|
},
|
|
373
332
|
{
|
|
374
|
-
"#": "
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
"minValue": 0,
|
|
378
|
-
"maxValue": 0,
|
|
379
|
-
"defaultValue": 0
|
|
333
|
+
"#": "228[0xff00]",
|
|
334
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
335
|
+
"label": "Schedule - Sunday (1): - Heat Setpoint"
|
|
380
336
|
},
|
|
381
337
|
{
|
|
382
|
-
"#": "
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"minValue": 0,
|
|
386
|
-
"maxValue": 0,
|
|
387
|
-
"defaultValue": 0
|
|
338
|
+
"#": "228[0xff]",
|
|
339
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
340
|
+
"label": "Schedule - Sunday (1): - Cool Setpoint"
|
|
388
341
|
},
|
|
389
342
|
{
|
|
390
|
-
"#": "
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"minValue": 0,
|
|
394
|
-
"maxValue": 0,
|
|
395
|
-
"defaultValue": 0
|
|
343
|
+
"#": "229[0xff000000]",
|
|
344
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
345
|
+
"label": "Schedule - Sunday (2): Hour"
|
|
396
346
|
},
|
|
397
347
|
{
|
|
398
|
-
"#": "
|
|
399
|
-
"
|
|
400
|
-
"
|
|
401
|
-
"minValue": 0,
|
|
402
|
-
"maxValue": 0,
|
|
403
|
-
"defaultValue": 0
|
|
348
|
+
"#": "229[0xff0000]",
|
|
349
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
350
|
+
"label": "Schedule - Sunday (2): Minute"
|
|
404
351
|
},
|
|
405
352
|
{
|
|
406
|
-
"#": "
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"minValue": 0,
|
|
410
|
-
"maxValue": 0,
|
|
411
|
-
"defaultValue": 0
|
|
353
|
+
"#": "229[0xff00]",
|
|
354
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
355
|
+
"label": "Schedule - Sunday (2): Heat Setpoint"
|
|
412
356
|
},
|
|
413
357
|
{
|
|
414
|
-
"#": "
|
|
415
|
-
"
|
|
416
|
-
"
|
|
417
|
-
"minValue": 0,
|
|
418
|
-
"maxValue": 0,
|
|
419
|
-
"defaultValue": 0
|
|
358
|
+
"#": "229[0xff]",
|
|
359
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
360
|
+
"label": "Schedule - Sunday (2): Cool Setpoint"
|
|
420
361
|
},
|
|
421
362
|
{
|
|
422
|
-
"#": "
|
|
423
|
-
"
|
|
424
|
-
"
|
|
425
|
-
"minValue": 0,
|
|
426
|
-
"maxValue": 0,
|
|
427
|
-
"defaultValue": 0
|
|
363
|
+
"#": "230[0xff000000]",
|
|
364
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
365
|
+
"label": "Schedule - Sunday (3): Hour"
|
|
428
366
|
},
|
|
429
367
|
{
|
|
430
|
-
"#": "
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"minValue": 0,
|
|
434
|
-
"maxValue": 0,
|
|
435
|
-
"defaultValue": 0
|
|
368
|
+
"#": "230[0xff0000]",
|
|
369
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
370
|
+
"label": "Schedule - Sunday (3): Minute"
|
|
436
371
|
},
|
|
437
372
|
{
|
|
438
|
-
"#": "
|
|
439
|
-
"
|
|
440
|
-
"
|
|
441
|
-
"minValue": 0,
|
|
442
|
-
"maxValue": 0,
|
|
443
|
-
"defaultValue": 0
|
|
373
|
+
"#": "230[0xff00]",
|
|
374
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
375
|
+
"label": "Schedule - Sunday (3): Heat Setpoint"
|
|
444
376
|
},
|
|
445
377
|
{
|
|
446
|
-
"#": "
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"minValue": 0,
|
|
450
|
-
"maxValue": 0,
|
|
451
|
-
"defaultValue": 0
|
|
378
|
+
"#": "230[0xff]",
|
|
379
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
380
|
+
"label": "Schedule - Sunday (3): Cool Setpoint"
|
|
452
381
|
},
|
|
453
382
|
{
|
|
454
|
-
"#": "
|
|
455
|
-
"
|
|
456
|
-
"
|
|
457
|
-
"minValue": 0,
|
|
458
|
-
"maxValue": 0,
|
|
459
|
-
"defaultValue": 0
|
|
383
|
+
"#": "231[0xff000000]",
|
|
384
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
385
|
+
"label": "Schedule - Sunday (4): Hour"
|
|
460
386
|
},
|
|
461
387
|
{
|
|
462
|
-
"#": "
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
"minValue": 0,
|
|
466
|
-
"maxValue": 0,
|
|
467
|
-
"defaultValue": 0
|
|
388
|
+
"#": "231[0xff0000]",
|
|
389
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
390
|
+
"label": "Schedule - Sunday (4): Minute"
|
|
468
391
|
},
|
|
469
392
|
{
|
|
470
|
-
"#": "
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"minValue": 0,
|
|
474
|
-
"maxValue": 0,
|
|
475
|
-
"defaultValue": 0
|
|
393
|
+
"#": "231[0xff00]",
|
|
394
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
395
|
+
"label": "Schedule - Sunday (4): Heat Setpoint"
|
|
476
396
|
},
|
|
477
397
|
{
|
|
478
|
-
"#": "
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
"minValue": 0,
|
|
482
|
-
"maxValue": 0,
|
|
483
|
-
"defaultValue": 0
|
|
398
|
+
"#": "231[0xff]",
|
|
399
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
400
|
+
"label": "Schedule - Sunday (4): Cool Setpoint"
|
|
484
401
|
},
|
|
485
402
|
{
|
|
486
|
-
"#": "
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"minValue": 0,
|
|
490
|
-
"maxValue": 0,
|
|
491
|
-
"defaultValue": 0
|
|
403
|
+
"#": "232[0xff000000]",
|
|
404
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
405
|
+
"label": "Schedule - Monday (1): Hour"
|
|
492
406
|
},
|
|
493
407
|
{
|
|
494
|
-
"#": "
|
|
495
|
-
"
|
|
496
|
-
"
|
|
497
|
-
"minValue": 0,
|
|
498
|
-
"maxValue": 0,
|
|
499
|
-
"defaultValue": 0
|
|
408
|
+
"#": "232[0xff0000]",
|
|
409
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
410
|
+
"label": "Schedule - Monday (1): - Minute"
|
|
500
411
|
},
|
|
501
412
|
{
|
|
502
|
-
"#": "
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"minValue": 0,
|
|
506
|
-
"maxValue": 0,
|
|
507
|
-
"defaultValue": 0
|
|
413
|
+
"#": "232[0xff00]",
|
|
414
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
415
|
+
"label": "Schedule - Monday (1): - Heat Setpoint"
|
|
508
416
|
},
|
|
509
417
|
{
|
|
510
|
-
"#": "
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"minValue": 0,
|
|
514
|
-
"maxValue": 0,
|
|
515
|
-
"defaultValue": 0
|
|
418
|
+
"#": "232[0xff]",
|
|
419
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
420
|
+
"label": "Schedule - Monday (1): - Cool Setpoint"
|
|
516
421
|
},
|
|
517
422
|
{
|
|
518
|
-
"#": "
|
|
519
|
-
"
|
|
520
|
-
"
|
|
521
|
-
"minValue": 0,
|
|
522
|
-
"maxValue": 0,
|
|
523
|
-
"defaultValue": 0
|
|
423
|
+
"#": "233[0xff000000]",
|
|
424
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
425
|
+
"label": "Schedule - Monday (2): Hour"
|
|
524
426
|
},
|
|
525
427
|
{
|
|
526
|
-
"#": "
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
"minValue": 0,
|
|
530
|
-
"maxValue": 0,
|
|
531
|
-
"defaultValue": 0
|
|
428
|
+
"#": "233[0xff0000]",
|
|
429
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
430
|
+
"label": "Schedule - Monday (2): Minute"
|
|
532
431
|
},
|
|
533
432
|
{
|
|
534
|
-
"#": "
|
|
535
|
-
"
|
|
536
|
-
"
|
|
537
|
-
"minValue": 0,
|
|
538
|
-
"maxValue": 0,
|
|
539
|
-
"defaultValue": 0
|
|
433
|
+
"#": "233[0xff00]",
|
|
434
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
435
|
+
"label": "Schedule - Monday (2): Heat Setpoint"
|
|
540
436
|
},
|
|
541
437
|
{
|
|
542
|
-
"#": "
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
"minValue": 0,
|
|
546
|
-
"maxValue": 0,
|
|
547
|
-
"defaultValue": 0
|
|
438
|
+
"#": "233[0xff]",
|
|
439
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
440
|
+
"label": "Schedule - Monday (2): Cool Setpoint"
|
|
548
441
|
},
|
|
549
442
|
{
|
|
550
|
-
"#": "
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
"minValue": 0,
|
|
554
|
-
"maxValue": 0,
|
|
555
|
-
"defaultValue": 0
|
|
443
|
+
"#": "234[0xff000000]",
|
|
444
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
445
|
+
"label": "Schedule - Monday (3): Hour"
|
|
556
446
|
},
|
|
557
447
|
{
|
|
558
|
-
"#": "
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"minValue": 0,
|
|
562
|
-
"maxValue": 0,
|
|
563
|
-
"defaultValue": 0
|
|
448
|
+
"#": "234[0xff0000]",
|
|
449
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
450
|
+
"label": "Schedule - Monday (3): Minute"
|
|
564
451
|
},
|
|
565
452
|
{
|
|
566
|
-
"#": "
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"
|
|
453
|
+
"#": "234[0xff00]",
|
|
454
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
455
|
+
"label": "Schedule - Monday (3): Heat Setpoint"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"#": "234[0xff]",
|
|
459
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
460
|
+
"label": "Schedule - Monday (3): Cool Setpoint"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"#": "235[0xff000000]",
|
|
464
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
465
|
+
"label": "Schedule - Monday (4): Hour"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"#": "235[0xff0000]",
|
|
469
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
470
|
+
"label": "Schedule - Monday (4): Minute"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"#": "235[0xff00]",
|
|
474
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
475
|
+
"label": "Schedule - Monday (4): Heat Setpoint"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"#": "235[0xff]",
|
|
479
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
480
|
+
"label": "Schedule - Monday (4): Cool Setpoint"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"#": "236[0xff000000]",
|
|
484
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
485
|
+
"label": "Schedule - Tuesday (1): Hour"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"#": "236[0xff0000]",
|
|
489
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
490
|
+
"label": "Schedule - Tuesday (1): - Minute"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"#": "236[0xff00]",
|
|
494
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
495
|
+
"label": "Schedule - Tuesday (1): - Heat Setpoint"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"#": "236[0xff]",
|
|
499
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
500
|
+
"label": "Schedule - Tuesday (1): - Cool Setpoint"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"#": "237[0xff000000]",
|
|
504
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
505
|
+
"label": "Schedule - Tuesday (2): Hour"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"#": "237[0xff0000]",
|
|
509
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
510
|
+
"label": "Schedule - Tuesday (2): Minute"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"#": "237[0xff00]",
|
|
514
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
515
|
+
"label": "Schedule - Tuesday (2): Heat Setpoint"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"#": "237[0xff]",
|
|
519
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
520
|
+
"label": "Schedule - Tuesday (2): Cool Setpoint"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"#": "238[0xff000000]",
|
|
524
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
525
|
+
"label": "Schedule - Tuesday (3): Hour"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"#": "238[0xff0000]",
|
|
529
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
530
|
+
"label": "Schedule - Tuesday (3): Minute"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"#": "238[0xff00]",
|
|
534
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
535
|
+
"label": "Schedule - Tuesday (3): Heat Setpoint"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"#": "238[0xff]",
|
|
539
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
540
|
+
"label": "Schedule - Tuesday (3): Cool Setpoint"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"#": "239[0xff000000]",
|
|
544
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
545
|
+
"label": "Schedule - Tuesday (4): Hour"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"#": "239[0xff0000]",
|
|
549
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
550
|
+
"label": "Schedule - Tuesday (4): Minute"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"#": "239[0xff00]",
|
|
554
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
555
|
+
"label": "Schedule - Tuesday (4): Heat Setpoint"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"#": "239[0xff]",
|
|
559
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
560
|
+
"label": "Schedule - Tuesday (4): Cool Setpoint"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"#": "240[0xff000000]",
|
|
564
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
565
|
+
"label": "Schedule - Wednesday (1): Hour"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"#": "240[0xff0000]",
|
|
569
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
570
|
+
"label": "Schedule - Wednesday (1): - Minute"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"#": "240[0xff00]",
|
|
574
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
575
|
+
"label": "Schedule - Wednesday (1): - Heat Setpoint"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"#": "240[0xff]",
|
|
579
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
580
|
+
"label": "Schedule - Wednesday (1): - Cool Setpoint"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"#": "241[0xff000000]",
|
|
584
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
585
|
+
"label": "Schedule - Wednesday (2): Hour"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"#": "241[0xff0000]",
|
|
589
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
590
|
+
"label": "Schedule - Wednesday (2): Minute"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"#": "241[0xff00]",
|
|
594
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
595
|
+
"label": "Schedule - Wednesday (2): Heat Setpoint"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"#": "241[0xff]",
|
|
599
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
600
|
+
"label": "Schedule - Wednesday (2): Cool Setpoint"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"#": "242[0xff000000]",
|
|
604
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
605
|
+
"label": "Schedule - Wednesday (3): Hour"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"#": "242[0xff0000]",
|
|
609
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
610
|
+
"label": "Schedule - Wednesday (3): Minute"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"#": "242[0xff00]",
|
|
614
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
615
|
+
"label": "Schedule - Wednesday (3): Heat Setpoint"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"#": "242[0xff]",
|
|
619
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
620
|
+
"label": "Schedule - Wednesday (3): Cool Setpoint"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"#": "243[0xff000000]",
|
|
624
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
625
|
+
"label": "Schedule - Wednesday (4): Hour"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"#": "243[0xff0000]",
|
|
629
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
630
|
+
"label": "Schedule - Wednesday (4): Minute"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"#": "243[0xff00]",
|
|
634
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
635
|
+
"label": "Schedule - Wednesday (4): Heat Setpoint"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"#": "243[0xff]",
|
|
639
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
640
|
+
"label": "Schedule - Wednesday (4): Cool Setpoint"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"#": "244[0xff000000]",
|
|
644
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
645
|
+
"label": "Schedule - Thursday (1): Hour"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"#": "244[0xff0000]",
|
|
649
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
650
|
+
"label": "Schedule - Thursday (1): - Minute"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"#": "244[0xff00]",
|
|
654
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
655
|
+
"label": "Schedule - Thursday (1): - Heat Setpoint"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"#": "244[0xff]",
|
|
659
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
660
|
+
"label": "Schedule - Thursday (1): - Cool Setpoint"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"#": "245[0xff000000]",
|
|
664
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
665
|
+
"label": "Schedule - Thursday (2): Hour"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"#": "245[0xff0000]",
|
|
669
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
670
|
+
"label": "Schedule - Thursday (2): Minute"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"#": "245[0xff00]",
|
|
674
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
675
|
+
"label": "Schedule - Thursday (2): Heat Setpoint"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"#": "245[0xff]",
|
|
679
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
680
|
+
"label": "Schedule - Thursday (2): Cool Setpoint"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"#": "246[0xff000000]",
|
|
684
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
685
|
+
"label": "Schedule - Thursday (3): Hour"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"#": "246[0xff0000]",
|
|
689
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
690
|
+
"label": "Schedule - Thursday (3): Minute"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"#": "246[0xff00]",
|
|
694
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
695
|
+
"label": "Schedule - Thursday (3): Heat Setpoint"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"#": "246[0xff]",
|
|
699
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
700
|
+
"label": "Schedule - Thursday (3): Cool Setpoint"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"#": "247[0xff000000]",
|
|
704
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
705
|
+
"label": "Schedule - Thursday (4): Hour"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"#": "247[0xff0000]",
|
|
709
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
710
|
+
"label": "Schedule - Thursday (4): Minute"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"#": "247[0xff00]",
|
|
714
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
715
|
+
"label": "Schedule - Thursday (4): Heat Setpoint"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"#": "247[0xff]",
|
|
719
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
720
|
+
"label": "Schedule - Thursday (4): Cool Setpoint"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"#": "248[0xff000000]",
|
|
724
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
725
|
+
"label": "Schedule - Friday (1): Hour"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"#": "248[0xff0000]",
|
|
729
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
730
|
+
"label": "Schedule - Friday (1): - Minute"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"#": "248[0xff00]",
|
|
734
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
735
|
+
"label": "Schedule - Friday (1): - Heat Setpoint"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"#": "248[0xff]",
|
|
739
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
740
|
+
"label": "Schedule - Friday (1): - Cool Setpoint"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"#": "249[0xff000000]",
|
|
744
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
745
|
+
"label": "Schedule - Friday (2): Hour"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"#": "249[0xff0000]",
|
|
749
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
750
|
+
"label": "Schedule - Friday (2): Minute"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"#": "249[0xff00]",
|
|
754
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
755
|
+
"label": "Schedule - Friday (2): Heat Setpoint"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"#": "249[0xff]",
|
|
759
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
760
|
+
"label": "Schedule - Friday (2): Cool Setpoint"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"#": "250[0xff000000]",
|
|
764
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
765
|
+
"label": "Schedule - Friday (3): Hour"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"#": "250[0xff0000]",
|
|
769
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
770
|
+
"label": "Schedule - Friday (3): Minute"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"#": "250[0xff00]",
|
|
774
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
775
|
+
"label": "Schedule - Friday (3): Heat Setpoint"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"#": "250[0xff]",
|
|
779
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
780
|
+
"label": "Schedule - Friday (3): Cool Setpoint"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"#": "251[0xff000000]",
|
|
784
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
785
|
+
"label": "Schedule - Friday (4): Hour"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"#": "251[0xff0000]",
|
|
789
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
790
|
+
"label": "Schedule - Friday (4): Minute"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"#": "251[0xff00]",
|
|
794
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
795
|
+
"label": "Schedule - Friday (4): Heat Setpoint"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"#": "251[0xff]",
|
|
799
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
800
|
+
"label": "Schedule - Friday (4): Cool Setpoint"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"#": "252[0xff000000]",
|
|
804
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
805
|
+
"label": "Schedule - Saturday (1): Hour"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"#": "252[0xff0000]",
|
|
809
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
810
|
+
"label": "Schedule - Saturday (1): - Minute"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"#": "252[0xff00]",
|
|
814
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
815
|
+
"label": "Schedule - Saturday (1): - Heat Setpoint"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"#": "252[0xff]",
|
|
819
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
820
|
+
"label": "Schedule - Saturday (1): - Cool Setpoint"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"#": "253[0xff000000]",
|
|
824
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
825
|
+
"label": "Schedule - Saturday (2): Hour"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"#": "253[0xff0000]",
|
|
829
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
830
|
+
"label": "Schedule - Saturday (2): Minute"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"#": "253[0xff00]",
|
|
834
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
835
|
+
"label": "Schedule - Saturday (2): Heat Setpoint"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"#": "253[0xff]",
|
|
839
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
840
|
+
"label": "Schedule - Saturday (2): Cool Setpoint"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"#": "254[0xff000000]",
|
|
844
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
845
|
+
"label": "Schedule - Saturday (3): Hour"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"#": "254[0xff0000]",
|
|
849
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
850
|
+
"label": "Schedule - Saturday (3): Minute"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"#": "254[0xff00]",
|
|
854
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
855
|
+
"label": "Schedule - Saturday (3): Heat Setpoint"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"#": "254[0xff]",
|
|
859
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
860
|
+
"label": "Schedule - Saturday (3): Cool Setpoint"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"#": "255[0xff000000]",
|
|
864
|
+
"$import": "templates/trane_template.json#schedule_hour",
|
|
865
|
+
"label": "Schedule - Saturday (4): Hour"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"#": "255[0xff0000]",
|
|
869
|
+
"$import": "templates/trane_template.json#schedule_minute",
|
|
870
|
+
"label": "Schedule - Saturday (4): Minute"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"#": "255[0xff00]",
|
|
874
|
+
"$import": "templates/trane_template.json#schedule_heat_setpoint",
|
|
875
|
+
"label": "Schedule - Saturday (4): Heat Setpoint"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"#": "255[0xff]",
|
|
879
|
+
"$import": "templates/trane_template.json#schedule_cool_setpoint",
|
|
880
|
+
"label": "Schedule - Saturday (4): Cool Setpoint"
|
|
572
881
|
}
|
|
573
882
|
]
|
|
574
883
|
}
|
package/config/scales.json
CHANGED
package/config/sensorTypes.json
CHANGED
|
@@ -45,16 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"0x05": {
|
|
47
47
|
"label": "Humidity",
|
|
48
|
-
"scales":
|
|
49
|
-
"0x00": {
|
|
50
|
-
"label": "Percentage value",
|
|
51
|
-
"unit": "%"
|
|
52
|
-
},
|
|
53
|
-
"0x01": {
|
|
54
|
-
"label": "Absolute humidity",
|
|
55
|
-
"unit": "g/m³"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
48
|
+
"scales": "$SCALES:humidity"
|
|
58
49
|
},
|
|
59
50
|
"0x06": {
|
|
60
51
|
"label": "Velocity",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.11.0",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"xml2json": "^0.12.0",
|
|
74
74
|
"yargs": "^17.3.1"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "bdc5106e535fa2a2527d3b60394cbe52bc30044f"
|
|
77
77
|
}
|