@zwave-js/config 10.17.0 → 10.19.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/0x027a/templates/zooz_template.json +172 -16
- package/config/devices/0x027a/zen30.json +4 -4
- package/config/devices/0x027a/zen32.json +2 -2
- package/config/devices/0x027a/zen51.json +4 -4
- package/config/devices/0x027a/zen52.json +7 -7
- package/config/devices/0x027a/zen53.json +234 -0
- package/config/devices/0x027a/zen54.json +152 -0
- package/config/devices/0x027a/zen55.json +185 -0
- package/config/devices/0x027a/zen71.json +3 -3
- package/config/devices/0x027a/zen72.json +2 -2
- package/config/devices/0x027a/zen73.json +3 -3
- package/config/devices/0x027a/zen74.json +2 -2
- package/config/devices/0x027a/zen76.json +3 -3
- package/config/devices/0x027a/zen77.json +2 -2
- package/config/devices/0x0330/ves-zw-hld-016.json +1 -1
- package/package.json +3 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
// Auto-On/Off-Timers for ZEN3x and ZEN7x
|
|
3
|
+
"auto_timer_base_3x_7x": {
|
|
3
4
|
"valueSize": 4,
|
|
4
5
|
"unit": "minutes",
|
|
5
6
|
"minValue": 0,
|
|
@@ -13,29 +14,92 @@
|
|
|
13
14
|
}
|
|
14
15
|
]
|
|
15
16
|
},
|
|
16
|
-
"
|
|
17
|
+
"auto_off_timer_3x_7x": {
|
|
17
18
|
"label": "Auto Turn-Off Timer",
|
|
18
|
-
"$import": "#
|
|
19
|
+
"$import": "#auto_timer_base_3x_7x"
|
|
19
20
|
},
|
|
20
|
-
"
|
|
21
|
+
"auto_on_timer_3x_7x": {
|
|
21
22
|
"label": "Auto Turn-On Timer",
|
|
22
|
-
"$import": "#
|
|
23
|
+
"$import": "#auto_timer_base_3x_7x"
|
|
23
24
|
},
|
|
24
|
-
|
|
25
|
-
|
|
25
|
+
|
|
26
|
+
// Auto-On/Off-Timers for ZEN5x with fixed time unit
|
|
27
|
+
"auto_timer_base_5x": {
|
|
28
|
+
"valueSize": 4,
|
|
29
|
+
"unit": "seconds",
|
|
30
|
+
"minValue": 0,
|
|
31
|
+
"maxValue": 4294967295,
|
|
32
|
+
"defaultValue": 0,
|
|
33
|
+
"unsigned": true,
|
|
34
|
+
"options": [
|
|
35
|
+
{
|
|
36
|
+
"label": "Disable",
|
|
37
|
+
"value": 0
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"auto_off_timer_5x": {
|
|
42
|
+
"label": "Auto Turn-Off Timer",
|
|
43
|
+
"$import": "#auto_timer_base_5x"
|
|
44
|
+
},
|
|
45
|
+
"auto_on_timer_5x": {
|
|
46
|
+
"label": "Auto Turn-On Timer",
|
|
47
|
+
"$import": "#auto_timer_base_5x"
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
// Auto-On/Off-Timers for ZEN5x with variable time unit and 2-byte value
|
|
51
|
+
"auto_timer_variable_unit_base_5x_short": {
|
|
52
|
+
"description": "Unit is minutes or seconds, depending on time unit parameter",
|
|
26
53
|
"valueSize": 2,
|
|
27
54
|
"unit": "min/sec",
|
|
28
|
-
"
|
|
55
|
+
"minValue": 0,
|
|
56
|
+
"maxValue": 65535,
|
|
57
|
+
"defaultValue": 0,
|
|
58
|
+
"unsigned": true,
|
|
59
|
+
"options": [
|
|
60
|
+
{
|
|
61
|
+
"label": "Disable",
|
|
62
|
+
"value": 0
|
|
63
|
+
}
|
|
64
|
+
]
|
|
29
65
|
},
|
|
30
|
-
"
|
|
66
|
+
"auto_off_timer_variable_unit_5x_short": {
|
|
31
67
|
"label": "Auto Turn-Off Timer",
|
|
32
|
-
"$import": "#
|
|
68
|
+
"$import": "#auto_timer_variable_unit_base_5x_short"
|
|
33
69
|
},
|
|
34
|
-
"
|
|
70
|
+
"auto_on_timer_variable_unit_5x_short": {
|
|
35
71
|
"label": "Auto Turn-On Timer",
|
|
36
|
-
"$import": "#
|
|
72
|
+
"$import": "#auto_timer_variable_unit_base_5x_short"
|
|
37
73
|
},
|
|
38
|
-
|
|
74
|
+
|
|
75
|
+
// Auto-On/Off-Timers for ZEN5x with variable time unit and 4-byte value
|
|
76
|
+
"auto_timer_variable_unit_base_5x_long": {
|
|
77
|
+
"description": "Unit is minutes or seconds, depending on time unit parameter",
|
|
78
|
+
"valueSize": 4,
|
|
79
|
+
"unit": "min/sec",
|
|
80
|
+
"minValue": 0,
|
|
81
|
+
"maxValue": 4294967295,
|
|
82
|
+
"defaultValue": 0,
|
|
83
|
+
"unsigned": true,
|
|
84
|
+
"options": [
|
|
85
|
+
{
|
|
86
|
+
"label": "Disable",
|
|
87
|
+
"value": 0
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"auto_off_timer_variable_unit_5x_long": {
|
|
92
|
+
"label": "Auto Turn-Off Timer",
|
|
93
|
+
"$import": "#auto_timer_variable_unit_base_5x_long"
|
|
94
|
+
},
|
|
95
|
+
"auto_on_timer_variable_unit_5x_long": {
|
|
96
|
+
"label": "Auto Turn-On Timer",
|
|
97
|
+
"$import": "#auto_timer_variable_unit_base_5x_long"
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
// Different variants of the auto-timer unit selectors
|
|
101
|
+
"auto_timer_unit_select_min_sec": {
|
|
102
|
+
"label": "Auto Timer Unit",
|
|
39
103
|
"valueSize": 1,
|
|
40
104
|
"minValue": 1,
|
|
41
105
|
"maxValue": 2,
|
|
@@ -50,9 +114,28 @@
|
|
|
50
114
|
"label": "Seconds",
|
|
51
115
|
"value": 2
|
|
52
116
|
}
|
|
53
|
-
]
|
|
54
|
-
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
"auto_timer_unit_select_sec_min": {
|
|
120
|
+
"label": "Auto Timer Unit",
|
|
121
|
+
"valueSize": 1,
|
|
122
|
+
"minValue": 1,
|
|
123
|
+
"maxValue": 2,
|
|
124
|
+
"defaultValue": 1,
|
|
125
|
+
"unsigned": true,
|
|
126
|
+
"options": [
|
|
127
|
+
{
|
|
128
|
+
"label": "Seconds",
|
|
129
|
+
"value": 1
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"label": "Minutes",
|
|
133
|
+
"value": 2
|
|
134
|
+
}
|
|
135
|
+
]
|
|
55
136
|
},
|
|
137
|
+
|
|
138
|
+
// Auto-On/Off-Timers for other series with fixed time unit
|
|
56
139
|
"auto_timer_duration_base": {
|
|
57
140
|
"valueSize": 4,
|
|
58
141
|
"unit": "minutes",
|
|
@@ -69,6 +152,7 @@
|
|
|
69
152
|
"label": "Auto Turn-On Timer Duration",
|
|
70
153
|
"$import": "#auto_timer_duration_base"
|
|
71
154
|
},
|
|
155
|
+
|
|
72
156
|
"enable_scene_control": {
|
|
73
157
|
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
74
158
|
"label": "Enable/Disable Scene Control",
|
|
@@ -185,7 +269,7 @@
|
|
|
185
269
|
}
|
|
186
270
|
]
|
|
187
271
|
},
|
|
188
|
-
"
|
|
272
|
+
"association_reports_binary": {
|
|
189
273
|
"label": "Association Reports",
|
|
190
274
|
"valueSize": 1,
|
|
191
275
|
"minValue": 0,
|
|
@@ -204,6 +288,25 @@
|
|
|
204
288
|
}
|
|
205
289
|
]
|
|
206
290
|
},
|
|
291
|
+
"association_reports_multilevel": {
|
|
292
|
+
"label": "Association Reports",
|
|
293
|
+
"valueSize": 1,
|
|
294
|
+
"minValue": 0,
|
|
295
|
+
"maxValue": 1,
|
|
296
|
+
"defaultValue": 1,
|
|
297
|
+
"unsigned": true,
|
|
298
|
+
"allowManualEntry": false,
|
|
299
|
+
"options": [
|
|
300
|
+
{
|
|
301
|
+
"label": "Multilevel Switch CC Report (Z-Wave); Basic CC Report (Manual)",
|
|
302
|
+
"value": 0
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"label": "Multilevel Switch CC Report (Z-Wave / Manual)",
|
|
306
|
+
"value": 1
|
|
307
|
+
}
|
|
308
|
+
]
|
|
309
|
+
},
|
|
207
310
|
"dimmer_ramp_rate": {
|
|
208
311
|
"$import": "~/templates/master_template.json#base_0-99_nounit",
|
|
209
312
|
"label": "Ramp Rate Off/On (Manual Control)",
|
|
@@ -263,6 +366,38 @@
|
|
|
263
366
|
}
|
|
264
367
|
]
|
|
265
368
|
},
|
|
369
|
+
"zwave_on_dimmer_ramp_rate_match_manual": {
|
|
370
|
+
"$import": "~/templates/master_template.json#base_0-100_nounit",
|
|
371
|
+
"label": "Ramp Rate On (Z-Wave)",
|
|
372
|
+
"unit": "seconds",
|
|
373
|
+
"defaultValue": 0,
|
|
374
|
+
"options": [
|
|
375
|
+
{
|
|
376
|
+
"label": "Instant on",
|
|
377
|
+
"value": 0
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"label": "Match ramp rate for manual control",
|
|
381
|
+
"value": 100
|
|
382
|
+
}
|
|
383
|
+
]
|
|
384
|
+
},
|
|
385
|
+
"zwave_off_dimmer_ramp_rate_match_manual": {
|
|
386
|
+
"$import": "~/templates/master_template.json#base_0-100_nounit",
|
|
387
|
+
"label": "Ramp Rate Off (Z-Wave)",
|
|
388
|
+
"unit": "seconds",
|
|
389
|
+
"defaultValue": 0,
|
|
390
|
+
"options": [
|
|
391
|
+
{
|
|
392
|
+
"label": "Instant off",
|
|
393
|
+
"value": 0
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"label": "Match ramp rate for manual control",
|
|
397
|
+
"value": 100
|
|
398
|
+
}
|
|
399
|
+
]
|
|
400
|
+
},
|
|
266
401
|
"min_brightness": {
|
|
267
402
|
"$import": "~/templates/master_template.json#base_1-99_nounit",
|
|
268
403
|
"label": "Minimum Brightness",
|
|
@@ -511,6 +646,27 @@
|
|
|
511
646
|
"label": "Local Programming",
|
|
512
647
|
"description": "Controls programming (eg. including/excluding) device through physical inputs, allowing the according input sequence to be used for scene control instead. Factory reset remains available."
|
|
513
648
|
},
|
|
649
|
+
"local_zwave_control": {
|
|
650
|
+
"label": "Local/Z-Wave Control",
|
|
651
|
+
"description": "Reports are always sent to the hub, regardless of this setting.",
|
|
652
|
+
"valueSize": 1,
|
|
653
|
+
"defaultValue": 1,
|
|
654
|
+
"allowManualEntry": false,
|
|
655
|
+
"options": [
|
|
656
|
+
{
|
|
657
|
+
"label": "Local control disabled, Z-Wave control enabled",
|
|
658
|
+
"value": 0
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"label": "Local and Z-Wave control enabled",
|
|
662
|
+
"value": 1
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"label": "Local and Z-Wave control disabled",
|
|
666
|
+
"value": 2
|
|
667
|
+
}
|
|
668
|
+
]
|
|
669
|
+
},
|
|
514
670
|
"3way_switch_type": {
|
|
515
671
|
"label": "3-Way Switch Type",
|
|
516
672
|
"valueSize": 1,
|
|
@@ -69,22 +69,22 @@
|
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
"#": "8",
|
|
72
|
-
"$import": "templates/zooz_template.json#
|
|
72
|
+
"$import": "templates/zooz_template.json#auto_timer_base_3x_7x",
|
|
73
73
|
"label": "Auto Turn-Off Timer for Dimmer"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"#": "9",
|
|
77
|
-
"$import": "templates/zooz_template.json#
|
|
77
|
+
"$import": "templates/zooz_template.json#auto_timer_base_3x_7x",
|
|
78
78
|
"label": "Auto Turn-On Timer for Dimmer"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"#": "10",
|
|
82
|
-
"$import": "templates/zooz_template.json#
|
|
82
|
+
"$import": "templates/zooz_template.json#auto_timer_base_3x_7x",
|
|
83
83
|
"label": "Auto Turn-Off Timer for Relay"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
"#": "11",
|
|
87
|
-
"$import": "templates/zooz_template.json#
|
|
87
|
+
"$import": "templates/zooz_template.json#auto_timer_base_3x_7x",
|
|
88
88
|
"label": "Auto Turn-On Timer for Relay"
|
|
89
89
|
},
|
|
90
90
|
{
|
|
@@ -148,12 +148,12 @@
|
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"#": "16",
|
|
151
|
-
"$import": "templates/zooz_template.json#
|
|
151
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x",
|
|
152
152
|
"label": "Auto-Off Timer (Relay)"
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
"#": "17",
|
|
156
|
-
"$import": "templates/zooz_template.json#
|
|
156
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x",
|
|
157
157
|
"label": "Auto-On Timer (Relay)"
|
|
158
158
|
},
|
|
159
159
|
{
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "2",
|
|
47
|
-
"$import": "templates/zooz_template.json#
|
|
47
|
+
"$import": "templates/zooz_template.json#auto_off_timer_variable_unit_5x_short"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
"#": "3",
|
|
51
|
-
"$import": "templates/zooz_template.json#
|
|
51
|
+
"$import": "templates/zooz_template.json#auto_on_timer_variable_unit_5x_short"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"#": "10",
|
|
55
|
-
"$import": "templates/zooz_template.json#
|
|
55
|
+
"$import": "templates/zooz_template.json#auto_timer_unit_select_min_sec"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"#": "4",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"#": "8",
|
|
75
|
-
"$import": "templates/zooz_template.json#
|
|
75
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"#": "9",
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "3",
|
|
47
|
-
"$import": "templates/zooz_template.json#
|
|
47
|
+
"$import": "templates/zooz_template.json#auto_off_timer_variable_unit_5x_short",
|
|
48
48
|
"label": "Relay 1: Auto Off Timer"
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
51
|
"#": "4",
|
|
52
|
-
"$import": "templates/zooz_template.json#
|
|
52
|
+
"$import": "templates/zooz_template.json#auto_on_timer_variable_unit_5x_short",
|
|
53
53
|
"label": "Relay 1: Auto On Timer"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"#": "7",
|
|
57
|
-
"$import": "templates/zooz_template.json#
|
|
57
|
+
"$import": "templates/zooz_template.json#auto_timer_unit_select_min_sec",
|
|
58
58
|
"label": "Relay 1: Timer Unit"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
@@ -84,17 +84,17 @@
|
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
"#": "5",
|
|
87
|
-
"$import": "templates/zooz_template.json#
|
|
87
|
+
"$import": "templates/zooz_template.json#auto_off_timer_variable_unit_5x_short",
|
|
88
88
|
"label": "Relay 2: Auto Off Timer"
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
"#": "6",
|
|
92
|
-
"$import": "templates/zooz_template.json#
|
|
92
|
+
"$import": "templates/zooz_template.json#auto_on_timer_variable_unit_5x_short",
|
|
93
93
|
"label": "Relay 2: Auto On Timer"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"#": "8",
|
|
97
|
-
"$import": "templates/zooz_template.json#
|
|
97
|
+
"$import": "templates/zooz_template.json#auto_timer_unit_select_min_sec",
|
|
98
98
|
"label": "Relay 2: Timer Unit"
|
|
99
99
|
},
|
|
100
100
|
{
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
"#": "24",
|
|
131
|
-
"$import": "templates/zooz_template.json#
|
|
131
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
132
132
|
}
|
|
133
133
|
],
|
|
134
134
|
"metadata": {
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Zooz",
|
|
3
|
+
"manufacturerId": "0x027a",
|
|
4
|
+
"label": "ZEN53 LR",
|
|
5
|
+
"description": "DC Motor Controller",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0904",
|
|
9
|
+
"productId": "0x0219"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"paramInformation": [
|
|
17
|
+
{
|
|
18
|
+
"#": "1",
|
|
19
|
+
"label": "State/Position After Power Failure",
|
|
20
|
+
"valueSize": 1,
|
|
21
|
+
"minValue": 0,
|
|
22
|
+
"maxValue": 100,
|
|
23
|
+
"defaultValue": 100,
|
|
24
|
+
"options": [
|
|
25
|
+
{
|
|
26
|
+
"label": "Always off",
|
|
27
|
+
"value": 0
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"label": "Previous position",
|
|
31
|
+
"value": 100
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"#": "2",
|
|
37
|
+
"$import": "~/templates/master_template.json#enable_led_indicator",
|
|
38
|
+
"defaultValue": 1
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"#": "3",
|
|
42
|
+
"label": "Motor Cycle Duration (Shutter Mode)",
|
|
43
|
+
"valueSize": 2,
|
|
44
|
+
"unit": "ms",
|
|
45
|
+
"minValue": 0,
|
|
46
|
+
"maxValue": 65535,
|
|
47
|
+
"defaultValue": 6000,
|
|
48
|
+
"unsigned": true,
|
|
49
|
+
"options": [
|
|
50
|
+
{
|
|
51
|
+
"label": "Use limit switches",
|
|
52
|
+
"value": 0
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"#": "4",
|
|
58
|
+
"label": "Motor Cycle Duration (Venetian Mode)",
|
|
59
|
+
"valueSize": 2,
|
|
60
|
+
"unit": "ms",
|
|
61
|
+
"minValue": 0,
|
|
62
|
+
"maxValue": 65535,
|
|
63
|
+
"defaultValue": 1000,
|
|
64
|
+
"unsigned": true,
|
|
65
|
+
"options": [
|
|
66
|
+
{
|
|
67
|
+
"label": "Use limit switches",
|
|
68
|
+
"value": 0
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"#": "5",
|
|
74
|
+
"label": "Calibration",
|
|
75
|
+
"valueSize": 1,
|
|
76
|
+
"defaultValue": 0,
|
|
77
|
+
"allowManualEntry": false,
|
|
78
|
+
"options": [
|
|
79
|
+
{
|
|
80
|
+
"label": "Idle / Stop calibration",
|
|
81
|
+
"value": 0
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"label": "Shutter mode calibration",
|
|
85
|
+
"value": 1
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"label": "Venetian mode calibration",
|
|
89
|
+
"value": 2
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"#": "17",
|
|
95
|
+
"label": "Calibration correction",
|
|
96
|
+
"valueSize": 1,
|
|
97
|
+
"defaultValue": 0,
|
|
98
|
+
"allowManualEntry": false,
|
|
99
|
+
"options": [
|
|
100
|
+
{
|
|
101
|
+
"label": "Idle / Stop repositioning",
|
|
102
|
+
"value": 0
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"label": "Start repositioning",
|
|
106
|
+
"value": 1
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"#": "6",
|
|
112
|
+
"label": "Operation Mode",
|
|
113
|
+
"valueSize": 1,
|
|
114
|
+
"defaultValue": 1,
|
|
115
|
+
"allowManualEntry": false,
|
|
116
|
+
"options": [
|
|
117
|
+
{
|
|
118
|
+
"label": "Shutter without positioning",
|
|
119
|
+
"value": 0
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"label": "Shutter with positioning",
|
|
123
|
+
"value": 1
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"label": "Venetian",
|
|
127
|
+
"value": 2
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"#": "9",
|
|
133
|
+
"label": "Reverse Motor Direction",
|
|
134
|
+
"valueSize": 1,
|
|
135
|
+
"defaultValue": 0,
|
|
136
|
+
"allowManualEntry": false,
|
|
137
|
+
"options": [
|
|
138
|
+
{
|
|
139
|
+
"label": "Not reversed",
|
|
140
|
+
"value": 0
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"label": "Reversed",
|
|
144
|
+
"value": 1
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"#": "8",
|
|
150
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
151
|
+
"label": "Inclusion From Switch",
|
|
152
|
+
"defaultValue": 1
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"#": "14",
|
|
156
|
+
"label": "External Switch Type (S1)",
|
|
157
|
+
"valueSize": 1,
|
|
158
|
+
"unsigned": true,
|
|
159
|
+
"defaultValue": 0,
|
|
160
|
+
"allowManualEntry": false,
|
|
161
|
+
"options": [
|
|
162
|
+
{
|
|
163
|
+
"label": "Toggle switch",
|
|
164
|
+
"value": 0
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"label": "Momentary switch",
|
|
168
|
+
"value": 1
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"#": "15",
|
|
174
|
+
"label": "External Switch Type (S2)",
|
|
175
|
+
"valueSize": 1,
|
|
176
|
+
"unsigned": true,
|
|
177
|
+
"defaultValue": 0,
|
|
178
|
+
"allowManualEntry": false,
|
|
179
|
+
"options": [
|
|
180
|
+
{
|
|
181
|
+
"label": "Toggle switch",
|
|
182
|
+
"value": 0
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"label": "Momentary switch",
|
|
186
|
+
"value": 1
|
|
187
|
+
}
|
|
188
|
+
]
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"#": "7",
|
|
192
|
+
"label": "Momentary Switch Configuration",
|
|
193
|
+
"valueSize": 1,
|
|
194
|
+
"defaultValue": 0,
|
|
195
|
+
"allowManualEntry": false,
|
|
196
|
+
"options": [
|
|
197
|
+
{
|
|
198
|
+
"label": "Single 2-button switch",
|
|
199
|
+
"value": 0
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"label": "Two 1-button switches",
|
|
203
|
+
"value": 1
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"#": "10",
|
|
209
|
+
"$import": "templates/zooz_template.json#auto_timer_variable_unit_base_5x_long",
|
|
210
|
+
"label": "Auto-Open Timer"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"#": "11",
|
|
214
|
+
"$import": "templates/zooz_template.json#auto_timer_variable_unit_base_5x_long",
|
|
215
|
+
"label": "Auto-Close Timer"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"#": "12",
|
|
219
|
+
"$import": "templates/zooz_template.json#auto_timer_unit_select_sec_min"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"#": "13",
|
|
223
|
+
"$import": "templates/zooz_template.json#local_zwave_control"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"#": "16",
|
|
227
|
+
"$import": "templates/zooz_template.json#association_reports_multilevel"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"metadata": {
|
|
231
|
+
"$import": "templates/zooz_template.json#zen5x_metadata",
|
|
232
|
+
"manual": "https://www.getzooz.com/downloads/zooz-700-z-wave-plus-long-range-dc-motor-controller-zen53-manual.pdf"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Zooz",
|
|
3
|
+
"manufacturerId": "0x027a",
|
|
4
|
+
"label": "ZEN54 LR",
|
|
5
|
+
"description": "0-10 V Dimmer",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0904",
|
|
9
|
+
"productId": "0x0218"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"paramInformation": [
|
|
17
|
+
{
|
|
18
|
+
"#": "1",
|
|
19
|
+
"label": "State/Brightness After Power Failure",
|
|
20
|
+
"valueSize": 1,
|
|
21
|
+
"minValue": 0,
|
|
22
|
+
"maxValue": 100,
|
|
23
|
+
"defaultValue": 100,
|
|
24
|
+
"options": [
|
|
25
|
+
{
|
|
26
|
+
"label": "Always off",
|
|
27
|
+
"value": 0
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"label": "Previous brightness",
|
|
31
|
+
"value": 100
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"#": "2",
|
|
37
|
+
"$import": "~/templates/master_template.json#enable_led_indicator",
|
|
38
|
+
"defaultValue": 1
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"#": "3",
|
|
42
|
+
"$import": "~/templates/master_template.json#base_0-99_nounit",
|
|
43
|
+
"label": "Dimming Speed",
|
|
44
|
+
"unit": "seconds",
|
|
45
|
+
"defaultValue": 5,
|
|
46
|
+
"options": [
|
|
47
|
+
{
|
|
48
|
+
"label": "Instant",
|
|
49
|
+
"value": 0
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"$if": "firmwareVersion >= 1.10",
|
|
55
|
+
"#": "4",
|
|
56
|
+
"label": "Minimum Brightness",
|
|
57
|
+
"valueSize": 1,
|
|
58
|
+
"minValue": 1,
|
|
59
|
+
"maxValue": 45,
|
|
60
|
+
"defaultValue": 1
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"$if": "firmwareVersion >= 1.10",
|
|
64
|
+
"#": "5",
|
|
65
|
+
"label": "Maximum Brightness",
|
|
66
|
+
"valueSize": 1,
|
|
67
|
+
"minValue": 55,
|
|
68
|
+
"maxValue": 99,
|
|
69
|
+
"defaultValue": 99
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"#": "6",
|
|
73
|
+
"$import": "~/templates/master_template.json#base_0-99_nounit",
|
|
74
|
+
"label": "Kickstart Brightness",
|
|
75
|
+
"defaultValue": 0,
|
|
76
|
+
"options": [
|
|
77
|
+
{
|
|
78
|
+
"label": "Disable",
|
|
79
|
+
"value": 0
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"#": "7",
|
|
85
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
86
|
+
"label": "Inclusion From Switch",
|
|
87
|
+
"defaultValue": 1
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"#": "12",
|
|
91
|
+
"$import": "templates/zooz_template.json#external_switch_type_0-3"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"#": "8",
|
|
95
|
+
"$import": "templates/zooz_template.json#auto_off_timer_variable_unit_5x_long"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"#": "9",
|
|
99
|
+
"$import": "templates/zooz_template.json#auto_on_timer_variable_unit_5x_long"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"#": "10",
|
|
103
|
+
"$import": "templates/zooz_template.json#auto_timer_unit_select_min_sec"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"#": "11",
|
|
107
|
+
"$import": "templates/zooz_template.json#local_zwave_control",
|
|
108
|
+
"label": "Smart Bulb Mode: Local/Z-Wave Control"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"#": "13",
|
|
112
|
+
"$import": "templates/zooz_template.json#association_reports_multilevel"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"#": "14",
|
|
116
|
+
"label": "Dimmer Off Behavior",
|
|
117
|
+
"valueSize": 1,
|
|
118
|
+
"defaultValue": 1,
|
|
119
|
+
"allowManualEntry": false,
|
|
120
|
+
"options": [
|
|
121
|
+
{
|
|
122
|
+
"label": "Keep LED driver powered",
|
|
123
|
+
"value": 0
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"label": "Turn off LED driver",
|
|
127
|
+
"value": 1
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"#": "15",
|
|
133
|
+
"$import": "templates/zooz_template.json#dimmer_on_ramp_rate"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"#": "16",
|
|
137
|
+
"$import": "templates/zooz_template.json#dimmer_off_ramp_rate"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"#": "17",
|
|
141
|
+
"$import": "templates/zooz_template.json#zwave_on_dimmer_ramp_rate_match_manual"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"#": "18",
|
|
145
|
+
"$import": "templates/zooz_template.json#zwave_off_dimmer_ramp_rate_match_manual"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"metadata": {
|
|
149
|
+
"$import": "templates/zooz_template.json#zen5x_metadata",
|
|
150
|
+
"manual": "https://www.getzooz.com/downloads/zooz-700-series-z-wave-plus-long-range-0-10-v-dimmer-zen54-manual.pdf"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Zooz",
|
|
3
|
+
"manufacturerId": "0x027a",
|
|
4
|
+
"label": "ZEN55 LR",
|
|
5
|
+
"description": "DC Signal Sensor",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0004",
|
|
9
|
+
"productId": "0x0110"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"paramInformation": [
|
|
17
|
+
{
|
|
18
|
+
"#": "1",
|
|
19
|
+
"$import": "~/templates/master_template.json#enable_led_indicator",
|
|
20
|
+
"defaultValue": 1
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"#": "2",
|
|
24
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
25
|
+
"label": "Turn On Relay On Alarm",
|
|
26
|
+
"defaultValue": 1
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"#": "3",
|
|
30
|
+
"$import": "templates/zooz_template.json#auto_off_timer_5x"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"#": "4",
|
|
34
|
+
"$import": "templates/zooz_template.json#auto_on_timer_5x"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"#": "5",
|
|
38
|
+
"$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"#": "6",
|
|
42
|
+
"label": "Group 2 (Smoke Alarm): Basic Set Configuration",
|
|
43
|
+
"valueSize": 1,
|
|
44
|
+
"defaultValue": 0,
|
|
45
|
+
"allowManualEntry": false,
|
|
46
|
+
"options": [
|
|
47
|
+
{
|
|
48
|
+
"label": "Smoke Detected: 0xff (On), No Smoke: 0x00 (Off)",
|
|
49
|
+
"value": 0
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"label": "Smoke Detected: 0x00 (Off), No Smoke: 0xff (On)",
|
|
53
|
+
"value": 1
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"label": "Smoke Detected: 0xff (On), No Smoke: no command",
|
|
57
|
+
"value": 2
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"label": "Smoke Detected: 0x00 (Off), No Smoke: no command",
|
|
61
|
+
"value": 3
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"label": "Smoke Detected: no command, No Smoke: 0x00 (Off)",
|
|
65
|
+
"value": 4
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"label": "Smoke Detected: no command, No Smoke: 0xff (On)",
|
|
69
|
+
"value": 5
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"#": "7",
|
|
75
|
+
"label": "Group 3 (CO Alarm): Basic Set Configuration",
|
|
76
|
+
"valueSize": 1,
|
|
77
|
+
"defaultValue": 0,
|
|
78
|
+
"allowManualEntry": false,
|
|
79
|
+
"options": [
|
|
80
|
+
{
|
|
81
|
+
"label": "CO Detected: 0xff (On), No CO: 0x00 (Off)",
|
|
82
|
+
"value": 0
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"label": "CO Detected: 0x00 (Off), No CO: 0xff (On)",
|
|
86
|
+
"value": 1
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"label": "CO Detected: 0xff (On), No CO: no command",
|
|
90
|
+
"value": 2
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"label": "CO Detected: 0x00 (Off), No CO: no command",
|
|
94
|
+
"value": 3
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"label": "CO Detected: no command, No CO: 0x00 (Off)",
|
|
98
|
+
"value": 4
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"label": "CO Detected: no command, No CO: 0xff (On)",
|
|
102
|
+
"value": 5
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"#": "8",
|
|
108
|
+
"label": "Enabled Features",
|
|
109
|
+
"description": "After changing this parameter, the device must be excluded and re-included",
|
|
110
|
+
"valueSize": 1,
|
|
111
|
+
"defaultValue": 1,
|
|
112
|
+
"allowManualEntry": false,
|
|
113
|
+
"options": [
|
|
114
|
+
{
|
|
115
|
+
"label": "Smoke & CO Sensor",
|
|
116
|
+
"value": 1
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"label": "CO Sensor",
|
|
120
|
+
"value": 2
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"label": "Smoke Sensor",
|
|
124
|
+
"value": 3
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"label": "Relay, Smoke & CO Sensor",
|
|
128
|
+
"value": 4
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"label": "Relay & CO Sensor",
|
|
132
|
+
"value": 5
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"label": "Relay & Smoke Sensor",
|
|
136
|
+
"value": 6
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"label": "Relay",
|
|
140
|
+
"value": 7
|
|
141
|
+
}
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"$if": "firmwareVersion >= 1.10",
|
|
146
|
+
"#": "9[0x01]",
|
|
147
|
+
"label": "Report Type: Signal Sensor",
|
|
148
|
+
"valueSize": 1,
|
|
149
|
+
"defaultValue": 0,
|
|
150
|
+
"allowManualEntry": false,
|
|
151
|
+
"options": [
|
|
152
|
+
{
|
|
153
|
+
"label": "Binary Switch Report",
|
|
154
|
+
"value": 0
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"label": "Basic Report",
|
|
158
|
+
"value": 1
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"$if": "firmwareVersion >= 1.10",
|
|
164
|
+
"#": "9[0x02]",
|
|
165
|
+
"label": "Report Type: Z-Wave",
|
|
166
|
+
"valueSize": 1,
|
|
167
|
+
"defaultValue": 0,
|
|
168
|
+
"allowManualEntry": false,
|
|
169
|
+
"options": [
|
|
170
|
+
{
|
|
171
|
+
"label": "Binary Switch Report",
|
|
172
|
+
"value": 0
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"label": "Basic Report",
|
|
176
|
+
"value": 1
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"metadata": {
|
|
182
|
+
"$import": "templates/zooz_template.json#zen5x_metadata",
|
|
183
|
+
"manual": "https://cdn.shopify.com/s/files/1/0218/7704/files/zooz-800-lr-dc-signal-sensor-zen55-manual.pdf"
|
|
184
|
+
}
|
|
185
|
+
}
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
"#": "3",
|
|
39
|
-
"$import": "templates/zooz_template.json#
|
|
39
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"#": "5",
|
|
43
|
-
"$import": "templates/zooz_template.json#
|
|
43
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "8",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"#": "16",
|
|
75
|
-
"$import": "templates/zooz_template.json#
|
|
75
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"#": "17",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
63
|
"#": "3",
|
|
64
|
-
"$import": "templates/zooz_template.json#
|
|
64
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
"#": "5",
|
|
68
|
-
"$import": "templates/zooz_template.json#
|
|
68
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
"#": "7[0x01]",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
"#": "3",
|
|
39
|
-
"$import": "templates/zooz_template.json#
|
|
39
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"#": "5",
|
|
43
|
-
"$import": "templates/zooz_template.json#
|
|
43
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "8",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"#": "16",
|
|
63
|
-
"$import": "templates/zooz_template.json#
|
|
63
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"#": "17",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
"#": "3",
|
|
39
|
-
"$import": "templates/zooz_template.json#
|
|
39
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"#": "5",
|
|
43
|
-
"$import": "templates/zooz_template.json#
|
|
43
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "8",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "3",
|
|
47
|
-
"$import": "templates/zooz_template.json#
|
|
47
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
"#": "5",
|
|
51
|
-
"$import": "templates/zooz_template.json#
|
|
51
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"#": "7[0x01]",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"#": "16",
|
|
95
|
-
"$import": "templates/zooz_template.json#
|
|
95
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
"#": "17",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"#": "3",
|
|
60
|
-
"$import": "templates/zooz_template.json#
|
|
60
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
63
|
"#": "5",
|
|
64
|
-
"$import": "templates/zooz_template.json#
|
|
64
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
"#": "7[0x01]",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.19.0",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"test:dirty": "node -r ../../maintenance/esbuild-register.js ../maintenance/src/resolveDirtyTests.ts --run"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@zwave-js/core": "10.
|
|
61
|
+
"@zwave-js/core": "10.19.0",
|
|
62
62
|
"@zwave-js/shared": "10.17.0",
|
|
63
63
|
"alcalzone-shared": "^4.0.8",
|
|
64
64
|
"ansi-colors": "^4.1.3",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@types/sinon": "^10.0.14",
|
|
81
81
|
"@types/xml2js": "^0.4.11",
|
|
82
82
|
"@types/yargs": "^17.0.24",
|
|
83
|
-
"@zwave-js/maintenance": "10.
|
|
83
|
+
"@zwave-js/maintenance": "10.19.0",
|
|
84
84
|
"ava": "^4.3.3",
|
|
85
85
|
"comment-json": "^4.2.3",
|
|
86
86
|
"del-cli": "^5.0.0",
|