@zwave-js/config 10.5.0 → 10.5.2

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.
@@ -1,3 +1,11 @@
1
+ // The firmware versions on this device are a mess
2
+ // 1.1 -> 10.0 -> (10.20 = 2.0) -> (10.30 = 2.10)
3
+
4
+ // Conditionals:
5
+ // 10.0 and later: firmwareVersion >= 10.0
6
+ // 10.20 and later: firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20
7
+ // 10.30 and later: firmwareVersion >= 2.10 && firmwareVersion < 10.0 || firmwareVersion >= 10.30
8
+
1
9
  {
2
10
  "manufacturer": "Zooz",
3
11
  "manufacturerId": "0x027a",
@@ -27,6 +35,11 @@
27
35
  "3": {
28
36
  "label": "Dimmer Control",
29
37
  "maxNodes": 5
38
+ },
39
+ "4": {
40
+ "$if": "firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20",
41
+ "label": "Remote Dimming",
42
+ "maxNodes": 5
30
43
  }
31
44
  },
32
45
  "paramInformation": [
@@ -54,14 +67,69 @@
54
67
  "#": "5",
55
68
  "$import": "templates/zooz_template.json#auto_on_timer"
56
69
  },
70
+ {
71
+ "#": "7[0x01]",
72
+ "$if": "firmwareVersion >= 2.10 && firmwareVersion < 10.0 || firmwareVersion >= 10.30",
73
+ "$import": "~/templates/master_template.json#base_enable_disable",
74
+ "label": "Send Status Change Report: Local Control",
75
+ "description": "Determine whether a trigger of this type should prompt a status change report to associated devices.",
76
+ "defaultValue": 1
77
+ },
78
+ {
79
+ "#": "7[0x02]",
80
+ "$if": "firmwareVersion >= 2.10 && firmwareVersion < 10.0 || firmwareVersion >= 10.30",
81
+ "$import": "~/templates/master_template.json#base_enable_disable",
82
+ "label": "Send Status Change Report: 3-Way",
83
+ "description": "Determine whether a trigger of this type should prompt a status change report to associated devices.",
84
+ "defaultValue": 1
85
+ },
86
+ {
87
+ "#": "7[0x04]",
88
+ "$if": "firmwareVersion >= 2.10 && firmwareVersion < 10.0 || firmwareVersion >= 10.30",
89
+ "$import": "~/templates/master_template.json#base_enable_disable",
90
+ "label": "Send Status Change Report: Z-Wave",
91
+ "description": "Determine whether a trigger of this type should prompt a status change report to associated devices.",
92
+ "defaultValue": 1
93
+ },
94
+ {
95
+ "#": "7[0x08]",
96
+ "$if": "firmwareVersion >= 2.10 && firmwareVersion < 10.0 || firmwareVersion >= 10.30",
97
+ "$import": "~/templates/master_template.json#base_enable_disable",
98
+ "label": "Send Status Change Report: Timer",
99
+ "description": "Determine whether a trigger of this type should prompt a status change report to associated devices.",
100
+ "defaultValue": 1
101
+ },
57
102
  {
58
103
  "#": "8",
59
104
  "$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
60
105
  },
106
+ // Ramp Rate Control
61
107
  {
108
+ // This parameter was changed in firmware 10.20 and split into parameters 9, 27, 28, and 29
109
+ "#": "9",
110
+ "$if": "firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20",
111
+ "$import": "templates/zooz_template.json#dimmer_on_ramp_rate"
112
+ },
113
+ {
114
+ // Old version (pre 10.20 / 2.0)
62
115
  "#": "9",
63
116
  "$import": "templates/zooz_template.json#dimmer_ramp_rate"
64
117
  },
118
+ {
119
+ "#": "27",
120
+ "$if": "firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20",
121
+ "$import": "templates/zooz_template.json#dimmer_off_ramp_rate"
122
+ },
123
+ {
124
+ "#": "28",
125
+ "$if": "firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20",
126
+ "$import": "templates/zooz_template.json#zwave_on_dimmer_ramp_rate"
127
+ },
128
+ {
129
+ "#": "29",
130
+ "$if": "firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20",
131
+ "$import": "templates/zooz_template.json#zwave_off_dimmer_ramp_rate"
132
+ },
65
133
  {
66
134
  "#": "10",
67
135
  "$import": "templates/zooz_template.json#min_brightness"
@@ -116,19 +184,9 @@
116
184
  "$import": "templates/zooz_template.json#local_programming"
117
185
  },
118
186
  {
119
- "#": "27",
120
- "$if": "firmwareVersion >= 10.10",
121
- "$import": "templates/zooz_template.json#dimmer_off_ramp_rate"
122
- },
123
- {
124
- "#": "28",
125
- "$if": "firmwareVersion >= 10.10",
126
- "$import": "templates/zooz_template.json#zwave_on_dimmer_ramp_rate"
127
- },
128
- {
129
- "#": "29",
130
- "$if": "firmwareVersion >= 10.10",
131
- "$import": "templates/zooz_template.json#zwave_off_dimmer_ramp_rate"
187
+ "#": "30",
188
+ "$if": "firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20",
189
+ "$import": "templates/zooz_template.json#local_dimming_speed_group_3_and_4"
132
190
  }
133
191
  ],
134
192
  "compat": {
@@ -46,10 +46,32 @@
46
46
  "#": "8",
47
47
  "$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
48
48
  },
49
+ // Ramp Rate Control
49
50
  {
51
+ // This parameter was changed in firmware 10.10 and split into parameters 9, 27, 28, and 29
50
52
  "#": "9",
51
- "$import": "templates/zooz_template.json#dimmer_ramp_rate",
52
- "defaultValue": 0
53
+ "$if": "firmwareVersion >= 10.10",
54
+ "$import": "templates/zooz_template.json#dimmer_on_ramp_rate"
55
+ },
56
+ {
57
+ // Old version (pre 10.10)
58
+ "#": "9",
59
+ "$import": "templates/zooz_template.json#dimmer_ramp_rate"
60
+ },
61
+ {
62
+ "#": "27",
63
+ "$if": "firmwareVersion >= 10.10",
64
+ "$import": "templates/zooz_template.json#dimmer_off_ramp_rate"
65
+ },
66
+ {
67
+ "#": "28",
68
+ "$if": "firmwareVersion >= 10.10",
69
+ "$import": "templates/zooz_template.json#zwave_on_dimmer_ramp_rate"
70
+ },
71
+ {
72
+ "#": "29",
73
+ "$if": "firmwareVersion >= 10.10",
74
+ "$import": "templates/zooz_template.json#zwave_off_dimmer_ramp_rate"
53
75
  },
54
76
  {
55
77
  "#": "10",
@@ -101,19 +123,9 @@
101
123
  "$import": "templates/zooz_template.json#local_programming"
102
124
  },
103
125
  {
104
- "#": "27",
126
+ "#": "30",
105
127
  "$if": "firmwareVersion >= 10.10",
106
- "$import": "templates/zooz_template.json#dimmer_off_ramp_rate"
107
- },
108
- {
109
- "#": "28",
110
- "$if": "firmwareVersion >= 10.10",
111
- "$import": "templates/zooz_template.json#zwave_on_dimmer_ramp_rate"
112
- },
113
- {
114
- "#": "29",
115
- "$if": "firmwareVersion >= 10.10",
116
- "$import": "templates/zooz_template.json#zwave_off_dimmer_ramp_rate"
128
+ "$import": "templates/zooz_template.json#local_dimming_speed_group_3_and_4"
117
129
  }
118
130
  ],
119
131
  "compat": {
@@ -1,3 +1,12 @@
1
+ // The firmware versions on this device are a mess
2
+ // 1.2 -> 1.3 -> 10.0 -> (10.10 = 2.0) -> (10.20 = 2.10 = 3.0) -> (10.30 = 2.20 = 3.10)
3
+
4
+ // Conditionals:
5
+ // 10.0 and later: firmwareVersion >= 2.0
6
+ // 10.10 and later: firmwareVersion >= 10.10 || firmwareVersion >= 2.0 && firmwareVersion < 10.0
7
+ // 10.20 and later: firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0
8
+ // 10.30 and later: firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10
9
+
1
10
  {
2
11
  "manufacturer": "Zooz",
3
12
  "manufacturerId": "0x027a",
@@ -56,24 +65,28 @@
56
65
  },
57
66
  {
58
67
  "#": "7[0x01]",
68
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
59
69
  "$import": "~/templates/master_template.json#base_enable_disable",
60
70
  "label": "Control Groups 2 and 3 With Physical Switch",
61
71
  "defaultValue": 1
62
72
  },
63
73
  {
64
74
  "#": "7[0x02]",
75
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
65
76
  "$import": "~/templates/master_template.json#base_enable_disable",
66
77
  "label": "Control Groups 2 and 3 With Connected 3-Way Switch",
67
78
  "defaultValue": 1
68
79
  },
69
80
  {
70
81
  "#": "7[0x04]",
82
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
71
83
  "$import": "~/templates/master_template.json#base_enable_disable",
72
84
  "label": "Control Groups 2 and 3 With Z-Wave Commands",
73
85
  "defaultValue": 1
74
86
  },
75
87
  {
76
88
  "#": "7[0x08]",
89
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
77
90
  "$import": "~/templates/master_template.json#base_enable_disable",
78
91
  "label": "Control Groups 2 and 3 With On/Off Timers",
79
92
  "defaultValue": 1
@@ -82,29 +95,31 @@
82
95
  "#": "8",
83
96
  "$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
84
97
  },
98
+ // Ramp Rate Control
85
99
  {
100
+ // This parameter was changed in firmware 10.10 and split into parameters 9, 27, 28, and 29
86
101
  "#": "9",
87
- "$if": "firmwareVersion <= 10.10",
88
- "$import": "templates/zooz_template.json#dimmer_ramp_rate"
102
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0",
103
+ "$import": "templates/zooz_template.json#dimmer_on_ramp_rate"
89
104
  },
90
105
  {
106
+ // Old version (pre 10.20)
91
107
  "#": "9",
92
- "$if": "firmwareVersion >= 10.20",
93
- "$import": "templates/zooz_template.json#dimmer_on_ramp_rate"
108
+ "$import": "templates/zooz_template.json#dimmer_ramp_rate"
94
109
  },
95
110
  {
96
111
  "#": "27",
97
- "$if": "firmwareVersion >= 10.20",
112
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0",
98
113
  "$import": "templates/zooz_template.json#dimmer_off_ramp_rate"
99
114
  },
100
115
  {
101
116
  "#": "28",
102
- "$if": "firmwareVersion >= 10.20",
117
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0",
103
118
  "$import": "templates/zooz_template.json#zwave_on_dimmer_ramp_rate"
104
119
  },
105
120
  {
106
121
  "#": "29",
107
- "$if": "firmwareVersion >= 10.20",
122
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0",
108
123
  "$import": "templates/zooz_template.json#zwave_off_dimmer_ramp_rate"
109
124
  },
110
125
  {
@@ -153,8 +168,13 @@
153
168
  },
154
169
  {
155
170
  "#": "26",
156
- "$if": "firmwareVersion >= 10.0",
171
+ "$if": "firmwareVersion >= 2.0",
157
172
  "$import": "templates/zooz_template.json#local_programming"
173
+ },
174
+ {
175
+ "#": "30",
176
+ "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0",
177
+ "$import": "templates/zooz_template.json#local_dimming_speed_group_3_and_4"
158
178
  }
159
179
  ],
160
180
  "compat": {
@@ -1,7 +1,24 @@
1
+ // The firmware versions on this device are a mess
2
+ // 16.9 / 17.9: HW version 1.0, 500 series
3
+ // 24.16 / 32.2 / 32.12: HW version 2.0, 500 series
4
+ // 32.32 / 1.10+: HW version 3.0, 700 series, called ZSE40 700
5
+
6
+ // Conditionals:
7
+ // version 1.0: firmwareVersion >= 16.9 && firmwareVersion < 24.16
8
+ // version 2.0: firmwareVersion >= 24.16 && firmwareVersion < 32.32
9
+ // version 3.0: firmwareVersion >= 32.32 || firmwareVersion >= 1.10 && firmwareVersion < 16.9
10
+
1
11
  {
2
12
  "manufacturer": "Zooz",
3
13
  "manufacturerId": "0x027a",
4
- "label": "ZSE40",
14
+ "label": [
15
+ {
16
+ "$if": "firmwareVersion === 32.32 || firmwareVersion >= 1.10 && firmwareVersion < 16.9",
17
+ "value": "ZSE40 700"
18
+ },
19
+ // Fallback for non-700 series
20
+ "ZSE40"
21
+ ],
5
22
  "description": "4-in-1 Sensor",
6
23
  "devices": [
7
24
  {
@@ -21,6 +38,7 @@
21
38
  "isLifeline": true
22
39
  },
23
40
  "2": {
41
+ "$if": "firmwareVersion >= 32.2 || firmwareVersion >= 1.10 && firmwareVersion < 16.9",
24
42
  "label": "Group 2",
25
43
  "maxNodes": 5
26
44
  }
@@ -59,7 +77,8 @@
59
77
  },
60
78
  {
61
79
  "#": "5",
62
- "$if": "firmwareVersion < 17.9",
80
+ // Initial release of HW version 1.0
81
+ "$if": "firmwareVersion >= 16.9 && firmwareVersion < 17.9",
63
82
  "$import": "~/templates/master_template.json#base_1-255_nounit",
64
83
  "label": "Re-trigger Interval",
65
84
  "unit": "minutes",
@@ -67,7 +86,8 @@
67
86
  },
68
87
  {
69
88
  "#": "5",
70
- "$if": "firmwareVersion >= 17.9 && firmwareVersion < 24.2",
89
+ // Update 17.9 changed the unit to seconds
90
+ "$if": "firmwareVersion >= 17.9 && firmwareVersion < 24.16",
71
91
  "label": "Re-trigger Interval",
72
92
  "unit": "seconds",
73
93
  "valueSize": 1,
@@ -78,7 +98,7 @@
78
98
  },
79
99
  {
80
100
  "#": "5",
81
- "$if": "firmwareVersion >= 24.2",
101
+ // Update 24.16 changed the range to 15-255, this also applies to HW version 1.0
82
102
  "label": "Re-trigger Interval",
83
103
  "unit": "seconds",
84
104
  "valueSize": 1,
@@ -89,6 +109,8 @@
89
109
  },
90
110
  {
91
111
  "#": "6",
112
+ // HW version 1.0, first release has default value 3
113
+ "$if": "firmwareVersion >= 16.9 && firmwareVersion < 17.9",
92
114
  "label": "Motion Sensor Sensitivity",
93
115
  "description": "Adjust sensitivity of the motion sensor.",
94
116
  "valueSize": 1,
@@ -126,34 +148,49 @@
126
148
  ]
127
149
  },
128
150
  {
129
- "#": "7",
130
- "$if": "firmwareVersion < 32.32",
131
- "label": "LED Indicator Mode",
151
+ "#": "6",
152
+ // All other releases have default value 4
153
+ "$if": "firmwareVersion < 16.9 || firmwareVersion >= 17.9",
154
+ "label": "Motion Sensor Sensitivity",
155
+ "description": "Adjust sensitivity of the motion sensor.",
132
156
  "valueSize": 1,
133
157
  "defaultValue": 4,
134
158
  "allowManualEntry": false,
135
159
  "options": [
136
160
  {
137
- "label": "Off",
161
+ "label": "highest",
138
162
  "value": 1
139
163
  },
140
164
  {
141
- "label": "Pulsing Temperature, Flashing Motion",
165
+ "label": "higher",
142
166
  "value": 2
143
167
  },
144
168
  {
145
- "label": "Flashing Temperature and Motion",
169
+ "label": "high",
146
170
  "value": 3
147
171
  },
148
172
  {
149
- "label": "No Temperature, Flashing Motion",
173
+ "label": "normal",
150
174
  "value": 4
175
+ },
176
+ {
177
+ "label": "low",
178
+ "value": 5
179
+ },
180
+ {
181
+ "label": "lower",
182
+ "value": 6
183
+ },
184
+ {
185
+ "label": "lowest",
186
+ "value": 7
151
187
  }
152
188
  ]
153
189
  },
154
190
  {
155
191
  "#": "7",
156
- "$if": "firmwareVersion >= 32.32",
192
+ // Hardware version 3 has removed mode 4
193
+ "$if": "firmwareVersion >= 32.32 || firmwareVersion >= 1.10 && firmwareVersion < 16.9",
157
194
  "label": "LED Indicator Mode",
158
195
  "valueSize": 1,
159
196
  "defaultValue": 3,
@@ -172,6 +209,66 @@
172
209
  "value": 3
173
210
  }
174
211
  ]
212
+ },
213
+ {
214
+ "#": "7",
215
+ // All other versions still have mode 4
216
+ "label": "LED Indicator Mode",
217
+ "valueSize": 1,
218
+ "defaultValue": 4,
219
+ "allowManualEntry": false,
220
+ "options": [
221
+ {
222
+ "label": "Off",
223
+ "value": 1
224
+ },
225
+ {
226
+ "label": "Pulsing Temperature, Flashing Motion",
227
+ "value": 2
228
+ },
229
+ {
230
+ "label": "Flashing Temperature and Motion",
231
+ "value": 3
232
+ },
233
+ {
234
+ "label": "No Temperature, Flashing Motion",
235
+ "value": 4
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "#": "8",
241
+ // Added in firmware version 32.2, still present in HW 3.0
242
+ "$if": "firmwareVersion >= 32.2 || firmwareVersion >= 1.10 && firmwareVersion < 16.9",
243
+ "$import": "~/templates/master_template.json#base_enable_disable",
244
+ "label": "Basic Set Reports",
245
+ "defaultValue": 1
246
+ },
247
+ {
248
+ "#": "9",
249
+ // Added with the switch to the new firmware versioning scheme
250
+ "$if": "firmwareVersion >= 1.10 && firmwareVersion < 16.9",
251
+ "label": "Temperature Offset",
252
+ "description": "Set the reporting offset on your temperature sensor. 0=-10, 100=0, 200=+10",
253
+ "valueSize": 1,
254
+ "unit": "0.1 °F/C",
255
+ "minValue": 0,
256
+ "maxValue": 200,
257
+ "defaultValue": 100,
258
+ "unsigned": true
259
+ },
260
+ {
261
+ "#": "10",
262
+ // Added with the switch to the new firmware versioning scheme
263
+ "$if": "firmwareVersion >= 1.10 && firmwareVersion < 16.9",
264
+ "label": "Humidity Offset",
265
+ "description": "Set the reporting offset on your humidity sensor. 0=-10%, 100=0%, 200=+10%",
266
+ "valueSize": 1,
267
+ "unit": "0.1 %",
268
+ "minValue": 0,
269
+ "maxValue": 200,
270
+ "defaultValue": 100,
271
+ "unsigned": true
175
272
  }
176
273
  ],
177
274
  "metadata": {
@@ -0,0 +1,230 @@
1
+ {
2
+ "manufacturer": "Ring",
3
+ "manufacturerId": "0x0346",
4
+ "label": "Glass Break Sensor",
5
+ "description": "Glass Break Sensor",
6
+ "devices": [
7
+ {
8
+ "productType": "0x0a01",
9
+ "productId": "0x0301",
10
+ "zwaveAllianceId": 4554
11
+ }
12
+ ],
13
+ "firmwareVersion": {
14
+ "min": "0.0",
15
+ "max": "255.255"
16
+ },
17
+ "associations": {
18
+ "1": {
19
+ "label": "Lifeline",
20
+ "maxNodes": 5,
21
+ "isLifeline": true
22
+ }
23
+ },
24
+ "paramInformation": [
25
+ {
26
+ "#": "1",
27
+ "label": "Heartbeat Interval",
28
+ "valueSize": 1,
29
+ "unit": "minutes",
30
+ "minValue": 1,
31
+ "maxValue": 70,
32
+ "defaultValue": 70,
33
+ "unsigned": true
34
+ },
35
+ {
36
+ "#": "2",
37
+ "label": "Message Retry Attempt Limit",
38
+ "valueSize": 1,
39
+ "minValue": 0,
40
+ "maxValue": 5,
41
+ "defaultValue": 1,
42
+ "unsigned": true
43
+ },
44
+ {
45
+ "#": "3",
46
+ "label": "Delay Between Retry Attempts",
47
+ "valueSize": 1,
48
+ "unit": "seconds",
49
+ "minValue": 1,
50
+ "maxValue": 60,
51
+ "defaultValue": 5,
52
+ "unsigned": true
53
+ },
54
+ {
55
+ "#": "4",
56
+ "label": "Low Battery Threshold",
57
+ "valueSize": 1,
58
+ "unit": "%",
59
+ "minValue": 0,
60
+ "maxValue": 100,
61
+ "defaultValue": 25,
62
+ "unsigned": true
63
+ },
64
+ {
65
+ "#": "5",
66
+ "label": "Critical Battery Threshold",
67
+ "valueSize": 1,
68
+ "unit": "%",
69
+ "minValue": 0,
70
+ "maxValue": 100,
71
+ "defaultValue": 10,
72
+ "unsigned": true
73
+ },
74
+ {
75
+ "#": "6",
76
+ "label": "Supervision Report Timeout",
77
+ "description": "How long to wait for a Supervision Report response to a Supervision Get",
78
+ "valueSize": 2,
79
+ "unit": "ms",
80
+ "minValue": 500,
81
+ "maxValue": 30000,
82
+ "defaultValue": 10000,
83
+ "unsigned": true
84
+ },
85
+ {
86
+ "#": "7",
87
+ "label": "Z-Wave Sleep Timeout",
88
+ "valueSize": 1,
89
+ "unit": "seconds",
90
+ "minValue": 0,
91
+ "maxValue": 15,
92
+ "defaultValue": 10,
93
+ "unsigned": true
94
+ },
95
+ {
96
+ "#": "8",
97
+ "label": "Glass Break Clear Delay",
98
+ "valueSize": 1,
99
+ "unit": "seconds",
100
+ "minValue": 5,
101
+ "maxValue": 255,
102
+ "defaultValue": 15,
103
+ "unsigned": true
104
+ },
105
+ {
106
+ "#": "9",
107
+ "label": "Faults Within Clear Delay Flag",
108
+ "valueSize": 1,
109
+ "minValue": 0,
110
+ "maxValue": 1,
111
+ "defaultValue": 0,
112
+ "unsigned": true
113
+ },
114
+ {
115
+ "#": "10",
116
+ "$import": "~/templates/master_template.json#base_enable_disable",
117
+ "label": "LED Indicator",
118
+ "defaultValue": 1
119
+ },
120
+ {
121
+ "#": "11",
122
+ "$import": "~/templates/master_template.json#base_enable_disable",
123
+ "label": "Enable Detection"
124
+ },
125
+ {
126
+ "#": "12",
127
+ "label": "SPL Range Optimization",
128
+ "valueSize": 1,
129
+ "minValue": 0,
130
+ "maxValue": 15,
131
+ "defaultValue": 9,
132
+ "unsigned": true
133
+ },
134
+ {
135
+ "#": "13",
136
+ "label": "Minimum Mic SPL, Part 1",
137
+ "valueSize": 1,
138
+ "minValue": 0,
139
+ "maxValue": 7,
140
+ "defaultValue": 0,
141
+ "unsigned": true
142
+ },
143
+ {
144
+ "#": "14",
145
+ "label": "Minimum Mic SPL, Part 2",
146
+ "valueSize": 1,
147
+ "minValue": 0,
148
+ "maxValue": 8,
149
+ "defaultValue": 1,
150
+ "unsigned": true
151
+ },
152
+ {
153
+ "#": "15",
154
+ "label": "Automatic Gain Control",
155
+ "valueSize": 1,
156
+ "minValue": 0,
157
+ "maxValue": 3,
158
+ "defaultValue": 0,
159
+ "unsigned": true
160
+ },
161
+ {
162
+ "#": "16",
163
+ "label": "Minimum Detection SPL",
164
+ "valueSize": 1,
165
+ "minValue": 0,
166
+ "maxValue": 7,
167
+ "defaultValue": 4,
168
+ "unsigned": true
169
+ },
170
+ {
171
+ "#": "17",
172
+ "label": "Mic-off Time",
173
+ "valueSize": 1,
174
+ "minValue": 0,
175
+ "maxValue": 7,
176
+ "defaultValue": 6,
177
+ "unsigned": true
178
+ },
179
+ {
180
+ "#": "18",
181
+ "label": "DNN Queue Size",
182
+ "valueSize": 1,
183
+ "minValue": 0,
184
+ "maxValue": 63,
185
+ "defaultValue": 9,
186
+ "unsigned": true
187
+ },
188
+ {
189
+ "#": "19",
190
+ "label": "DNN Window",
191
+ "valueSize": 1,
192
+ "minValue": 0,
193
+ "maxValue": 255,
194
+ "defaultValue": 6,
195
+ "unsigned": true
196
+ },
197
+ {
198
+ "#": "20",
199
+ "label": "DNN Backoff",
200
+ "valueSize": 1,
201
+ "minValue": 0,
202
+ "maxValue": 255,
203
+ "defaultValue": 55,
204
+ "unsigned": true
205
+ },
206
+ {
207
+ "#": "21",
208
+ "label": "DNN Decision Threshold",
209
+ "valueSize": 2,
210
+ "minValue": 0,
211
+ "maxValue": 65535,
212
+ "defaultValue": 32112,
213
+ "unsigned": true
214
+ },
215
+ {
216
+ "#": "22",
217
+ "label": "Debug NDR Error",
218
+ "valueSize": 2,
219
+ "minValue": 0,
220
+ "maxValue": 65535,
221
+ "defaultValue": 0,
222
+ "unsigned": true
223
+ }
224
+ ],
225
+ "metadata": {
226
+ "inclusion": "Classic Inclusion Steps: \n1. Initiate add flow for Security Devices in the Ring mobile application – Follow the guided add flow instructions provided in the Ring mobile application.\n2. Select add manually and enter the 5-digit DSK pin found on the package of the Ring Alarm Glass Break Sensor or the 5-digit DSK pin found under the QR code on the device. \n3. After powering on the device, press and hold the setup button on the front for 3 seconds. Release the button and the device will enter Classic inclusion mode",
227
+ "exclusion": "Exclusion Instructions: \n1. Initiate remove “Ring Alarm Glass Break Sensor” flow in the Ring Alarm mobile application – Select the settings icon from device details page and choose “Remove Device” to remove the device. This will place the controller into Remove or “Z-Wave Exclusion” mode. \n2. With the controller in Remove (Z-Wave Exclusion) mode, use a paper clip or similar object and tap the pinhole button. The device’s red LED turns on solid to indicate the device was removed from the network",
228
+ "reset": "Factory Default Instructions \n1. 1. To restore Ring Alarm Glass Break Sensor to factory default settings, locate the pinhole reset button on the device. This is found inside the battery compartment on the back of the device after removing the back bracket. \n2. Using a paperclip or similar object, insert it into the pinhole, press and hold the button down for 10 seconds. \n3. The device will rapidly blink green continuously for 10 seconds. After about 10 seconds, when the green blinking stops, release the button. The red LED will turn on solid to indicate the device was removed from the network"
229
+ }
230
+ }