@zwave-js/config 8.11.3-20220128 → 8.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/LICENSE +21 -0
  2. package/config/devices/0x000c/hs-fls100.json +18 -1
  3. package/config/devices/0x000c/hs-wd200.json +4 -4
  4. package/config/devices/0x000c/hs-wx300.json +4 -4
  5. package/config/devices/0x0063/14287.json +25 -0
  6. package/config/devices/0x0086/dsd31.json +5 -0
  7. package/config/devices/0x0086/templates/aeotec_template.json +4 -2
  8. package/config/devices/0x0086/zw098.json +10 -0
  9. package/config/devices/0x0086/zw099.json +4 -2
  10. package/config/devices/0x0086/zw121.json +7 -0
  11. package/config/devices/0x0086/zw122.json +10 -5
  12. package/config/devices/0x0090/hc620.json +5 -0
  13. package/config/devices/0x0090/smartcode_888.json +1 -0
  14. package/config/devices/0x0098/ct101.json +5 -0
  15. package/config/devices/0x0098/ct110.json +12 -5
  16. package/config/devices/0x010f/fgk101.json +291 -208
  17. package/config/devices/0x010f/fgr223.json +29 -10
  18. package/config/devices/0x010f/fgrgbw-442.json +24 -12
  19. package/config/devices/0x010f/fgwdeu.json +327 -191
  20. package/config/devices/0x010f/fgwreu-111.json +296 -120
  21. package/config/devices/0x010f/templates/fibaro_template.json +37 -0
  22. package/config/devices/0x0148/spirit.json +7 -1
  23. package/config/devices/0x0159/zmnhtd.json +10 -3
  24. package/config/devices/0x016a/ft096.json +12 -6
  25. package/config/devices/0x016a/ft100.json +4 -0
  26. package/config/devices/0x016a/ft121.json +6 -1
  27. package/config/devices/0x0234/zhc5010.json +8 -4
  28. package/config/devices/0x024f/fwc01.json +1 -0
  29. package/config/devices/0x0258/nas-pd07u1.json +4 -0
  30. package/config/devices/0x0267/10002081-13x.json +190 -0
  31. package/config/devices/0x031e/lzw30-sn.json +3 -1
  32. package/config/devices/0x031e/lzw31-sn.json +81 -191
  33. package/config/devices/0x0346/alarm_keypad_gen1.json +3 -0
  34. package/config/devices/0x044c/myot.json +75 -0
  35. package/config/devices/templates/master_template.json +18 -0
  36. package/package.json +10 -9
  37. package/config/devices/index.json +0 -34023
@@ -19,55 +19,38 @@
19
19
  },
20
20
  "paramInformation": [
21
21
  {
22
- "#": "0",
23
- "label": "ON/OFF mode",
24
- "valueSize": 1,
25
- "minValue": 0,
26
- "maxValue": 2,
27
- "defaultValue": 2
22
+ "#": "1",
23
+ "$import": "~/templates/master_template.json#state_after_power_failure_off_prev"
28
24
  },
29
25
  {
30
- "#": "1",
31
- "label": "Remember device state",
32
- "description": "Determines how the device will react in the event of power supply failure",
33
- "valueSize": 1,
26
+ "#": "2",
27
+ "label": "Overload Threshold",
28
+ "description": "Turn off the controlled device in case of exceeding threshold.",
29
+ "valueSize": 4,
34
30
  "minValue": 0,
35
- "maxValue": 1,
36
- "defaultValue": 1,
37
- "allowManualEntry": false,
31
+ "maxValue": 5000,
32
+ "defaultValue": 3500,
33
+ "unit": "0.1 W",
38
34
  "options": [
39
35
  {
40
- "label": "remains switched off after restoring power",
36
+ "label": "Disable",
41
37
  "value": 0
42
- },
43
- {
44
- "label": "restores remembered state after restoring power",
45
- "value": 1
46
38
  }
47
39
  ]
48
40
  },
49
- {
50
- "#": "2",
51
- "label": "Overload safety switch",
52
- "description": "Turn off the controlled device in case of exceeding the defined power",
53
- "valueSize": 4,
54
- "minValue": 0,
55
- "maxValue": 5000,
56
- "defaultValue": 3500
57
- },
58
41
  {
59
42
  "#": "10",
60
- "label": "LED frame power limit",
61
- "description": "Determines maximum active power.",
43
+ "label": "LED Indicator: Overload Threshold",
44
+ "description": "Indicator flashes violet in case of exceeding threshold.",
62
45
  "valueSize": 4,
63
46
  "minValue": 100,
64
47
  "maxValue": 5000,
65
- "defaultValue": 3500
48
+ "defaultValue": 3500,
49
+ "unit": "0.1 W"
66
50
  },
67
51
  {
68
52
  "#": "11",
69
- "label": "LED frame colour when ON",
70
- "description": "This parameter defines the LED colour when the device is ON.",
53
+ "label": "LED Indicator: Load On Color",
71
54
  "valueSize": 1,
72
55
  "minValue": 0,
73
56
  "maxValue": 9,
@@ -75,7 +58,7 @@
75
58
  "allowManualEntry": false,
76
59
  "options": [
77
60
  {
78
- "label": "LED diabled",
61
+ "label": "Disable",
79
62
  "value": 0
80
63
  },
81
64
  {
@@ -107,19 +90,18 @@
107
90
  "value": 7
108
91
  },
109
92
  {
110
- "label": "changes smoothly",
93
+ "label": "Smooth gradient based on measured power",
111
94
  "value": 8
112
95
  },
113
96
  {
114
- "label": "changes in steps",
97
+ "label": "Stepped gradient based on measured power",
115
98
  "value": 9
116
99
  }
117
100
  ]
118
101
  },
119
102
  {
120
103
  "#": "12",
121
- "label": "LED frame colour when OFF",
122
- "description": "This parameter defines the LED colour when the device is OFF.",
104
+ "label": "LED Indicator: Load Off Color",
123
105
  "valueSize": 1,
124
106
  "minValue": 0,
125
107
  "maxValue": 7,
@@ -127,7 +109,7 @@
127
109
  "allowManualEntry": false,
128
110
  "options": [
129
111
  {
130
- "label": "disabled",
112
+ "label": "Disable",
131
113
  "value": 0
132
114
  },
133
115
  {
@@ -162,86 +144,182 @@
162
144
  },
163
145
  {
164
146
  "#": "13",
165
- "label": "LED frame – brightness",
166
- "description": "This parameter allows to adjust the LED frame brightness.",
147
+ "label": "LED Indicator: Brightness",
167
148
  "valueSize": 1,
168
149
  "minValue": 0,
169
150
  "maxValue": 102,
170
- "defaultValue": 100
151
+ "defaultValue": 100,
152
+ "options": [
153
+ {
154
+ "label": "Disable",
155
+ "value": 0
156
+ },
157
+ {
158
+ "label": "Proportional to set level",
159
+ "value": 101
160
+ },
161
+ {
162
+ "label": "Inversely proportial to set level",
163
+ "value": 102
164
+ }
165
+ ]
171
166
  },
172
167
  {
173
168
  "#": "24",
174
- "label": "Buttons orientation",
175
- "description": "This parameter allows reversing the operation of the buttons.",
176
- "valueSize": 1,
169
+ "$import": "~/templates/master_template.json#orientation",
170
+ "label": "Switch Inverted Orientation"
171
+ },
172
+ {
173
+ "#": "30[0xff000000]",
174
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_type",
175
+ "label": "Alarm Configuration: 1st Slot: Notification Type",
176
+ "defaultValue": 0
177
+ },
178
+ {
179
+ "#": "30[0xff0000]",
180
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_event",
181
+ "label": "Alarm Configuration: 1st Slot: Notification Event",
182
+ "defaultValue": 0
183
+ },
184
+ {
185
+ "#": "30[0x03]",
186
+ "label": "Alarm Configuration: 1st Slot: Load Action",
187
+ "valueSize": 4,
177
188
  "minValue": 0,
178
- "maxValue": 1,
189
+ "maxValue": 3,
179
190
  "defaultValue": 0,
191
+ "unsigned": true,
180
192
  "allowManualEntry": false,
181
193
  "options": [
182
194
  {
183
- "label": "default (1st button brightens, 2nd button dims)",
195
+ "label": "No change",
184
196
  "value": 0
185
197
  },
186
198
  {
187
- "label": "reversed (1st button dims, 2nd button brightens)",
199
+ "label": "On",
188
200
  "value": 1
201
+ },
202
+ {
203
+ "label": "Off",
204
+ "value": 2
205
+ },
206
+ {
207
+ "label": "Flash",
208
+ "value": 3
189
209
  }
190
210
  ]
191
211
  },
192
212
  {
193
- "#": "30",
194
- "label": "Alarm configuration - 1st slot",
195
- "description": "determines to which alarm frames and how the device should react",
196
- "valueSize": 4,
197
- "minValue": 0,
198
- "maxValue": 255,
199
- "defaultValue": 0
213
+ "#": "30[0xf0]",
214
+ "$import": "templates/fibaro_template.json#alarm_configuration_indicator_blink_color",
215
+ "label": "Alarm Configuration: 1st Slot: LED Indicator"
200
216
  },
201
217
  {
202
- "#": "31",
203
- "label": "Alarm configuration - 2nd slot",
204
- "description": "determines to which alarm frames and how the device should react",
205
- "valueSize": 4,
206
- "minValue": 0,
207
- "maxValue": 255,
218
+ "#": "31[0xff000000]",
219
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_type",
220
+ "label": "Alarm Configuration: 2nd Slot: Notification Type",
221
+ "defaultValue": 5
222
+ },
223
+ {
224
+ "#": "31[0xff0000]",
225
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_event",
226
+ "label": "Alarm Configuration: 2nd Slot: Notification Event",
227
+ "defaultValue": 255
228
+ },
229
+ {
230
+ "#": "31[0x03]",
231
+ "$import": "#paramInformation/30[0x03]",
232
+ "label": "Alarm Configuration: 2nd Slot: Load Action",
208
233
  "defaultValue": 0
209
234
  },
210
235
  {
211
- "#": "32",
212
- "label": "Alarm configuration - 3rd slot",
213
- "description": "determines to which alarm frames and how the device should react",
214
- "valueSize": 4,
215
- "minValue": 0,
216
- "maxValue": 255,
236
+ "#": "31[0xf0]",
237
+ "$import": "templates/fibaro_template.json#alarm_configuration_indicator_blink_color",
238
+ "label": "Alarm Configuration: 2nd Slot: LED Indicator"
239
+ },
240
+ {
241
+ "#": "32[0xff000000]",
242
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_type",
243
+ "label": "Alarm Configuration: 3rd Slot: Notification Type",
244
+ "defaultValue": 1
245
+ },
246
+ {
247
+ "#": "32[0xff0000]",
248
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_event",
249
+ "label": "Alarm Configuration: 3rd Slot: Notification Event",
250
+ "defaultValue": 255
251
+ },
252
+ {
253
+ "#": "32[0x03]",
254
+ "$import": "#paramInformation/30[0x03]",
255
+ "label": "Alarm Configuration: 3rd Slot: Load Action",
217
256
  "defaultValue": 0
218
257
  },
219
258
  {
220
- "#": "33",
221
- "label": "Alarm configuration - 4th slot",
222
- "description": "determines to which alarm frames and how the device should react",
223
- "valueSize": 4,
224
- "minValue": 0,
225
- "maxValue": 255,
259
+ "#": "32[0xf0]",
260
+ "$import": "templates/fibaro_template.json#alarm_configuration_indicator_blink_color",
261
+ "label": "Alarm Configuration: 3rd Slot: LED Indicator"
262
+ },
263
+ {
264
+ "#": "33[0xff000000]",
265
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_type",
266
+ "label": "Alarm Configuration: 4th Slot: Notification Type",
267
+ "defaultValue": 2
268
+ },
269
+ {
270
+ "#": "33[0xff0000]",
271
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_event",
272
+ "label": "Alarm Configuration: 4th Slot: Notification Event",
273
+ "defaultValue": 255
274
+ },
275
+ {
276
+ "#": "33[0x03]",
277
+ "$import": "#paramInformation/30[0x03]",
278
+ "label": "Alarm Configuration: 4th Slot: Load Action",
226
279
  "defaultValue": 0
227
280
  },
228
281
  {
229
- "#": "34",
230
- "label": "Alarm configuration - 5th slot",
231
- "description": "determines to which alarm frames and how the device should react",
232
- "valueSize": 4,
233
- "minValue": 0,
234
- "maxValue": 255,
282
+ "#": "33[0xf0]",
283
+ "$import": "templates/fibaro_template.json#alarm_configuration_indicator_blink_color",
284
+ "label": "Alarm Configuration: 4th Slot: LED Indicator"
285
+ },
286
+ {
287
+ "#": "34[0xff000000]",
288
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_type",
289
+ "label": "Alarm Configuration: 5th Slot: Notification Type",
290
+ "defaultValue": 4
291
+ },
292
+ {
293
+ "#": "34[0xff0000]",
294
+ "$import": "templates/fibaro_template.json#alarm_configuration_notification_event",
295
+ "label": "Alarm Configuration: 5th Slot: Notification Event",
296
+ "defaultValue": 255
297
+ },
298
+ {
299
+ "#": "34[0x03]",
300
+ "$import": "#paramInformation/30[0x03]",
301
+ "label": "Alarm Configuration: 5th Slot: Load Action",
235
302
  "defaultValue": 0
236
303
  },
304
+ {
305
+ "#": "34[0xf0]",
306
+ "$import": "templates/fibaro_template.json#alarm_configuration_indicator_blink_color",
307
+ "label": "Alarm Configuration: 5th Slot: LED Indicator"
308
+ },
237
309
  {
238
310
  "#": "35",
239
- "label": "Alarm configuration – duration",
240
- "description": "defines duration of alarm sequence",
311
+ "label": "Alarm Duration",
312
+ "unit": "seconds",
241
313
  "valueSize": 2,
242
314
  "minValue": 0,
243
315
  "maxValue": 32400,
244
- "defaultValue": 600
316
+ "defaultValue": 600,
317
+ "options": [
318
+ {
319
+ "label": "Infinite",
320
+ "value": 0
321
+ }
322
+ ]
245
323
  },
246
324
  {
247
325
  "#": "40[0x01]",
@@ -277,71 +355,46 @@
277
355
  },
278
356
  {
279
357
  "#": "60",
280
- "label": "Power reports – include self-consumption",
281
- "description": "determines whether the power measurements should include self-consumption",
282
- "valueSize": 1,
283
- "minValue": 0,
284
- "maxValue": 1,
285
- "defaultValue": 0
358
+ "$import": "~/templates/master_template.json#base_enable_disable",
359
+ "label": "Power Report: Include Self-consumption"
286
360
  },
287
361
  {
288
362
  "#": "61",
289
- "label": "Power reports – on change",
290
- "description": "defines minimal change to be reported",
291
- "valueSize": 2,
292
- "minValue": 0,
293
- "maxValue": 500,
363
+ "$import": "templates/fibaro_template.json#power_report_threshold_relative_0-500",
294
364
  "defaultValue": 15
295
365
  },
296
366
  {
297
367
  "#": "62",
298
- "label": "Power reports – periodic",
299
- "description": "defines reporting interval for measured power",
300
- "valueSize": 2,
301
- "minValue": 0,
302
- "maxValue": 32400,
303
- "defaultValue": 3600,
304
- "writeOnly": true
368
+ "$import": "templates/fibaro_template.json#reports_periodic",
369
+ "label": "Power Reports: Interval",
370
+ "maxValue": 32400
305
371
  },
306
372
  {
307
373
  "#": "65",
308
- "label": "Energy reports – on change",
309
- "description": "defines minimal change to be reported",
310
- "valueSize": 2,
311
- "minValue": 0,
374
+ "$import": "templates/fibaro_template.json#energy_report_threshold",
312
375
  "maxValue": 500,
313
376
  "defaultValue": 10
314
377
  },
315
378
  {
316
379
  "#": "66",
317
- "label": "Energy reports – periodic",
318
- "description": "defines reporting interval for measured energy",
319
- "valueSize": 2,
320
- "minValue": 0,
321
- "maxValue": 32400,
322
- "defaultValue": 3600
380
+ "$import": "templates/fibaro_template.json#reports_periodic",
381
+ "label": "Energy Reports: Interval",
382
+ "maxValue": 32400
323
383
  },
324
384
  {
325
385
  "#": "150",
326
- "label": "Minimum brightness level",
327
- "description": "Minimum brightness level - initialised at calibration",
328
- "valueSize": 1,
329
- "minValue": 1,
386
+ "$import": "~/templates/master_template.json#minimum_dim_level_1-99",
330
387
  "maxValue": 98,
331
388
  "defaultValue": 1
332
389
  },
333
390
  {
334
391
  "#": "151",
335
- "label": "Maximum brightness level",
336
- "description": "Maximum brightness level - initalised at calibration",
337
- "valueSize": 1,
338
- "minValue": 2,
339
- "maxValue": 99,
340
- "defaultValue": 99
392
+ "$import": "~/templates/master_template.json#maximum_dim_level_1-99",
393
+ "minValue": 2
341
394
  },
342
395
  {
343
396
  "#": "152",
344
- "label": "Incandescence level of compact fluorescent lamps",
397
+ "label": "Fluorescent Lamp: Startup Brightness",
345
398
  "valueSize": 1,
346
399
  "minValue": 1,
347
400
  "maxValue": 99,
@@ -349,113 +402,154 @@
349
402
  },
350
403
  {
351
404
  "#": "153",
352
- "label": "Incandescence time of compact fluorescent lamps",
405
+ "label": "Fluorescent Lamp: Startup Time",
353
406
  "valueSize": 2,
354
407
  "minValue": 0,
355
408
  "maxValue": 255,
356
- "defaultValue": 0
409
+ "defaultValue": 0,
410
+ "unit": "0.1 seconds"
357
411
  },
358
412
  {
359
413
  "#": "154",
360
- "label": "Automatic control – dimming step size",
361
- "description": "defines the percentage value of dimming step",
362
- "valueSize": 1,
363
- "minValue": 1,
364
- "maxValue": 99,
365
- "defaultValue": 1
414
+ "$import": "~/templates/master_template.json#base_1-99_nounit",
415
+ "label": "Automatic Control: Dimming Step Size"
366
416
  },
367
417
  {
368
418
  "#": "155",
369
- "label": "Automatic control time of dimming step",
419
+ "label": "Automatic Control: Dimming Step Duration",
370
420
  "valueSize": 2,
371
421
  "minValue": 0,
372
422
  "maxValue": 255,
373
- "defaultValue": 1
423
+ "defaultValue": 1,
424
+ "unit": "0.01 seconds"
374
425
  },
375
426
  {
376
427
  "#": "156",
377
- "label": "Manual control – dimming step size",
378
- "valueSize": 1,
379
- "minValue": 1,
380
- "maxValue": 99,
381
- "defaultValue": 1
428
+ "$import": "~/templates/master_template.json#base_1-99_nounit",
429
+ "label": "Manual Control: Dimming Step Size"
382
430
  },
383
431
  {
384
432
  "#": "157",
385
- "label": "Manual control time of dimming step",
433
+ "label": "Manual Control: Dimming Step Duration",
386
434
  "valueSize": 2,
387
435
  "minValue": 0,
388
436
  "maxValue": 255,
389
- "defaultValue": 5
437
+ "defaultValue": 1,
438
+ "unit": "0.01 seconds"
390
439
  },
391
440
  {
392
441
  "#": "158",
393
- "label": "Auto-off functionality",
442
+ "label": "Auto-off Timer",
394
443
  "valueSize": 2,
395
444
  "minValue": 0,
396
445
  "maxValue": 32767,
397
- "defaultValue": 0
446
+ "defaultValue": 0,
447
+ "unit": "seconds",
448
+ "options": [
449
+ {
450
+ "label": "Disable",
451
+ "value": 0
452
+ }
453
+ ]
398
454
  },
399
455
  {
400
456
  "#": "159",
401
- "label": "Force auto-calibration",
457
+ "label": "Force Calibration",
402
458
  "valueSize": 1,
403
459
  "minValue": 0,
404
460
  "maxValue": 2,
405
- "defaultValue": 0
461
+ "defaultValue": 0,
462
+ "allowManualEntry": false,
463
+ "options": [
464
+ {
465
+ "label": "Disable",
466
+ "value": 0
467
+ },
468
+ {
469
+ "label": "Without FIBARO Bypass 2",
470
+ "value": 1
471
+ },
472
+ {
473
+ "label": "With FIBARO Bypass 2",
474
+ "value": 2
475
+ }
476
+ ]
406
477
  },
407
478
  {
408
479
  "#": "160",
409
- "label": "Auto-calibration status",
480
+ "label": "Calibration Status",
410
481
  "valueSize": 1,
411
482
  "minValue": 0,
412
483
  "maxValue": 1,
413
- "defaultValue": 0,
414
- "readOnly": true
484
+ "readOnly": true,
485
+ "options": [
486
+ {
487
+ "label": "Uncalibrated or overridden",
488
+ "value": 0
489
+ },
490
+ {
491
+ "label": "Calibrated",
492
+ "value": 1
493
+ }
494
+ ]
415
495
  },
416
496
  {
417
497
  "#": "161",
418
- "label": "Burnt out bulb detection",
419
- "valueSize": 1,
420
- "minValue": 0,
421
- "maxValue": 99,
422
- "defaultValue": 0
498
+ "$import": "~/templates/master_template.json#base_0-99_nounit",
499
+ "label": "Burnt Out Bulb Detection: Power Variation",
500
+ "options": [
501
+ {
502
+ "label": "Disable",
503
+ "value": 0
504
+ }
505
+ ]
423
506
  },
424
507
  {
425
508
  "#": "162",
426
- "label": "Delay of a burnt out bulb and overload detection",
509
+ "label": "Burnt Out Bulb and Overload Detection: Time Delay",
427
510
  "valueSize": 2,
428
511
  "minValue": 0,
429
512
  "maxValue": 255,
430
- "defaultValue": 5
513
+ "defaultValue": 5,
514
+ "unit": "seconds"
431
515
  },
432
516
  {
433
517
  "#": "163",
434
- "label": "1st button ON value sent to association groups",
518
+ "label": "First Button ON: Value Sent to Association Groups",
435
519
  "valueSize": 2,
436
520
  "minValue": 0,
437
521
  "maxValue": 255,
438
- "defaultValue": 255
522
+ "defaultValue": 255,
523
+ "options": [
524
+ {
525
+ "label": "Current level",
526
+ "value": 254
527
+ }
528
+ ]
439
529
  },
440
530
  {
441
531
  "#": "164",
442
- "label": "2nd button OFF value sent to association groups",
532
+ "label": "Second Button OFF: Value Sent to Association Groups",
443
533
  "valueSize": 2,
444
534
  "minValue": 0,
445
535
  "maxValue": 255,
446
- "defaultValue": 0
536
+ "defaultValue": 0,
537
+ "options": [
538
+ {
539
+ "label": "Current level",
540
+ "value": 254
541
+ }
542
+ ]
447
543
  },
448
544
  {
449
545
  "#": "165",
450
- "label": "Double click – set level",
451
- "valueSize": 1,
452
- "minValue": 0,
453
- "maxValue": 99,
546
+ "$import": "~/templates/master_template.json#base_0-99_nounit",
547
+ "label": "Double Click: Set Level",
454
548
  "defaultValue": 99
455
549
  },
456
550
  {
457
551
  "#": "170",
458
- "label": "Load control mode",
552
+ "label": "Dimmer Mode",
459
553
  "valueSize": 1,
460
554
  "minValue": 0,
461
555
  "maxValue": 2,
@@ -463,40 +557,70 @@
463
557
  "allowManualEntry": false,
464
558
  "options": [
465
559
  {
466
- "label": "forced leading edge",
560
+ "label": "Force leading edge",
467
561
  "value": 0
468
562
  },
469
563
  {
470
- "label": "forced trailing edge",
564
+ "label": "Force trailing edge",
471
565
  "value": 1
472
566
  },
473
567
  {
474
- "label": "control mode selected automatically",
568
+ "label": "Auto-detect",
475
569
  "value": 2
476
570
  }
477
571
  ]
478
572
  },
479
573
  {
480
574
  "#": "171",
481
- "label": "Load control mode recognized",
575
+ "$import": "~/templates/master_template.json#dimmer_type_lead_trail",
576
+ "label": "Detected Dimmer Mode",
577
+ "readOnly": true
578
+ },
579
+ {
580
+ "#": "172",
581
+ "label": "Load Type",
482
582
  "valueSize": 1,
483
583
  "minValue": 0,
484
- "maxValue": 1,
485
- "defaultValue": 0,
486
- "readOnly": true
584
+ "maxValue": 2,
585
+ "defaultValue": 2,
586
+ "allowManualEntry": false,
587
+ "options": [
588
+ {
589
+ "label": "Dimmable",
590
+ "value": 0
591
+ },
592
+ {
593
+ "label": "Non-dimmable (dimming is disabled)",
594
+ "value": 1
595
+ },
596
+ {
597
+ "label": "Auto-detect",
598
+ "value": 2
599
+ }
600
+ ]
487
601
  },
488
602
  {
489
603
  "#": "173",
490
- "label": "Dimmability of the load (read only)",
604
+ "label": "Detected Load Type",
491
605
  "valueSize": 1,
492
606
  "minValue": 0,
493
607
  "maxValue": 1,
494
608
  "defaultValue": 0,
495
- "readOnly": true
609
+ "readOnly": true,
610
+ "options": [
611
+ {
612
+ "label": "Dimmable",
613
+ "value": 0
614
+ },
615
+ {
616
+ "label": "Non-dimmable",
617
+ "value": 1
618
+ }
619
+ ]
496
620
  },
497
621
  {
498
622
  "#": "174",
499
- "label": "Soft-start functionality",
623
+ "label": "Soft-Start Duration",
500
624
  "valueSize": 1,
501
625
  "minValue": 0,
502
626
  "maxValue": 2,
@@ -504,22 +628,22 @@
504
628
  "allowManualEntry": false,
505
629
  "options": [
506
630
  {
507
- "label": "no soft-start",
631
+ "label": "Disable",
508
632
  "value": 0
509
633
  },
510
634
  {
511
- "label": "short soft-start (0.1s)",
635
+ "label": "0.1 seconds",
512
636
  "value": 1
513
637
  },
514
638
  {
515
- "label": "long soft-start (0.5s)",
639
+ "label": "0.5 seconds",
516
640
  "value": 2
517
641
  }
518
642
  ]
519
643
  },
520
644
  {
521
645
  "#": "175",
522
- "label": "Auto-calibration after power on",
646
+ "label": "Auto-Calibration Trigger",
523
647
  "valueSize": 1,
524
648
  "minValue": 0,
525
649
  "maxValue": 4,
@@ -527,26 +651,26 @@
527
651
  "allowManualEntry": false,
528
652
  "options": [
529
653
  {
530
- "label": "no auto-calibration after power on",
654
+ "label": "None",
531
655
  "value": 0
532
656
  },
533
657
  {
534
- "label": "Auto-calibration after each power on",
535
- "value": 1
658
+ "label": "Power on",
659
+ "value": 2
536
660
  },
537
661
  {
538
- "label": "Auto-calibration after each LOAD ERROR",
539
- "value": 2
662
+ "label": "Load error",
663
+ "value": 3
540
664
  },
541
665
  {
542
- "label": "Auto-calibratie after each power on or LOAD ERROR",
666
+ "label": "Power on and load error",
543
667
  "value": 4
544
668
  }
545
669
  ]
546
670
  },
547
671
  {
548
672
  "#": "176",
549
- "label": "Behaviour after OVERCURRENT or SURGE",
673
+ "label": "Behaviour After Overcurrent or Surge",
550
674
  "valueSize": 1,
551
675
  "minValue": 0,
552
676
  "maxValue": 1,
@@ -554,26 +678,37 @@
554
678
  "allowManualEntry": false,
555
679
  "options": [
556
680
  {
557
- "label": "permanently disabled",
681
+ "label": "Disable load",
558
682
  "value": 0
559
683
  },
560
684
  {
561
- "label": "three attempts to turn on the load",
685
+ "label": "Three attempts to turn on the load",
562
686
  "value": 1
563
687
  }
564
688
  ]
565
689
  },
566
690
  {
567
691
  "#": "177",
568
- "label": "Brightness level correction flickering",
692
+ "label": "Brightness Level Correction Duration for Flickering Loads",
569
693
  "valueSize": 2,
570
694
  "minValue": 0,
571
695
  "maxValue": 255,
572
- "defaultValue": 255
696
+ "defaultValue": 255,
697
+ "unit": "seconds",
698
+ "options": [
699
+ {
700
+ "label": "Disable",
701
+ "value": 0
702
+ },
703
+ {
704
+ "label": "Automatic Correction",
705
+ "value": 255
706
+ }
707
+ ]
573
708
  },
574
709
  {
575
710
  "#": "178",
576
- "label": "Method of calculating the active power",
711
+ "label": "Active Power Calculation Method",
577
712
  "valueSize": 1,
578
713
  "minValue": 0,
579
714
  "maxValue": 2,
@@ -581,26 +716,27 @@
581
716
  "allowManualEntry": false,
582
717
  "options": [
583
718
  {
584
- "label": "standard algorithm",
719
+ "label": "Standard algorithm",
585
720
  "value": 0
586
721
  },
587
722
  {
588
- "label": "approximation / calibration data",
723
+ "label": "Calibration data approximation",
589
724
  "value": 1
590
725
  },
591
726
  {
592
- "label": "approximation / control angle",
727
+ "label": "Control angle approximation",
593
728
  "value": 2
594
729
  }
595
730
  ]
596
731
  },
597
732
  {
598
733
  "#": "179",
599
- "label": "Approximated power at max brightness",
734
+ "label": "Approximated Power at Maximum Brightness",
600
735
  "valueSize": 2,
601
736
  "minValue": 0,
602
737
  "maxValue": 500,
603
- "defaultValue": 0
738
+ "defaultValue": 0,
739
+ "unit": "W"
604
740
  }
605
741
  ]
606
742
  }