@zwave-js/config 10.11.1 → 10.13.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.
Files changed (32) hide show
  1. package/build/ConfigManager.d.ts.map +1 -1
  2. package/build/ConfigManager.js +3 -1
  3. package/build/ConfigManager.js.map +1 -1
  4. package/build/Notifications.d.ts +2 -0
  5. package/build/Notifications.d.ts.map +1 -1
  6. package/build/Notifications.js +8 -0
  7. package/build/Notifications.js.map +1 -1
  8. package/build/devices/DeviceConfig.d.ts +9 -1
  9. package/build/devices/DeviceConfig.d.ts.map +1 -1
  10. package/build/devices/DeviceConfig.js +14 -2
  11. package/build/devices/DeviceConfig.js.map +1 -1
  12. package/build/utils.d.ts +1 -0
  13. package/build/utils.d.ts.map +1 -1
  14. package/build/utils.js +6 -1
  15. package/build/utils.js.map +1 -1
  16. package/config/devices/0x0129/yrd256-zw3.json +4 -0
  17. package/config/devices/0x015f/a8-9.json +6 -2
  18. package/config/devices/0x015f/mh10-pm2_5-wa_wd.json +5 -1
  19. package/config/devices/0x0190/adc-swm150.json +313 -0
  20. package/config/devices/0x027a/zen20.json +1 -1
  21. package/config/devices/0x0330/ves-zw-dim-001.json +10 -9
  22. package/config/devices/0x0330/ves-zw-hld-016.json +123 -0
  23. package/config/devices/0x0330/ves-zw-mot-018.json +241 -0
  24. package/config/devices/0x0330/ves-zw-rem-010.json +25 -0
  25. package/config/devices/0x0330/ves-zw-soc-28.json +62 -0
  26. package/config/devices/0x0330/ves-zw-swi-002.json +6 -5
  27. package/config/devices/0x0330/ves-zw-swi-014.json +168 -0
  28. package/config/devices/0x0330/ves-zw-wal-003.json +23 -0
  29. package/config/devices/0x0330/ves-zw-wal-008.json +25 -0
  30. package/config/devices/0x0330/ves-zw-wal-009.json +25 -0
  31. package/config/notifications.json +45 -9
  32. package/package.json +6 -6
@@ -0,0 +1,313 @@
1
+ {
2
+ "manufacturer": "Building 36 Technologies",
3
+ "manufacturerId": "0x0190",
4
+ "label": "ADC-SWM150",
5
+ "description": "Smart Water Valve & Meter",
6
+ "devices": [
7
+ {
8
+ "productType": "0x0007",
9
+ "productId": "0x0001"
10
+ }
11
+ ],
12
+ "firmwareVersion": {
13
+ "min": "0.0",
14
+ "max": "255.255"
15
+ },
16
+ "paramInformation": [
17
+ // These parameters are reverse-engineered from Zniffer traces. They may contain errors.
18
+ {
19
+ "#": "7",
20
+ "label": "High Flow Timer",
21
+ "valueSize": 1,
22
+ "unit": "minutes",
23
+ "minValue": 0,
24
+ "maxValue": 100,
25
+ "defaultValue": 1
26
+ },
27
+ {
28
+ "#": "1",
29
+ "label": "High Flow Threshold",
30
+ "valueSize": 1,
31
+ "unit": "L/minute",
32
+ "minValue": 3,
33
+ "maxValue": 100,
34
+ "defaultValue": 28
35
+ },
36
+ {
37
+ "#": "4[0x01]",
38
+ "$import": "~/templates/master_template.json#base_enable_disable",
39
+ "label": "Unexpected High Flow: Close Valve"
40
+ },
41
+ {
42
+ "#": "4[0x02]",
43
+ "$import": "~/templates/master_template.json#base_enable_disable",
44
+ "label": "Unexpected High Flow: Sound Buzzer"
45
+ },
46
+
47
+ {
48
+ "#": "8",
49
+ "label": "Medium Flow Timer",
50
+ "valueSize": 1,
51
+ "unit": "minutes",
52
+ "minValue": 1,
53
+ "maxValue": 240,
54
+ "defaultValue": 40,
55
+ "unsigned": true
56
+ },
57
+ {
58
+ "#": "2",
59
+ "label": "Medium Flow Threshold",
60
+ "valueSize": 1,
61
+ "unit": "L/minute",
62
+ "minValue": 2,
63
+ "maxValue": 99,
64
+ "defaultValue": 4
65
+ },
66
+ {
67
+ "#": "5[0x01]",
68
+ "$import": "~/templates/master_template.json#base_enable_disable",
69
+ "label": "Unexpected Medium Flow: Close Valve"
70
+ },
71
+ {
72
+ "#": "5[0x02]",
73
+ "$import": "~/templates/master_template.json#base_enable_disable",
74
+ "label": "Unexpected Medium Flow: Sound Buzzer"
75
+ },
76
+
77
+ {
78
+ "#": "9",
79
+ "label": "Low Flow Timer",
80
+ "valueSize": 1,
81
+ "unit": "hours",
82
+ "minValue": 1,
83
+ "maxValue": 24,
84
+ "defaultValue": 2
85
+ },
86
+ {
87
+ "#": "6[0x01]",
88
+ "$import": "~/templates/master_template.json#base_enable_disable",
89
+ "label": "Unexpected Low Flow: Close Valve"
90
+ },
91
+ {
92
+ "#": "6[0x02]",
93
+ "$import": "~/templates/master_template.json#base_enable_disable",
94
+ "label": "Unexpected Low Flow: Sound Buzzer"
95
+ },
96
+
97
+ {
98
+ "#": "89",
99
+ "$import": "~/templates/master_template.json#base_enable_disable_255",
100
+ "label": "Notify Before Closing Valve",
101
+ "defaultValue": 255
102
+ },
103
+
104
+ {
105
+ "#": "10",
106
+ "label": "Low Temperature Threshold",
107
+ "valueSize": 2,
108
+ "unit": "0.1 °C",
109
+ "minValue": 0,
110
+ "maxValue": 100,
111
+ "defaultValue": 40
112
+ },
113
+ {
114
+ "#": "11",
115
+ "label": "High Temperature Threshold",
116
+ "valueSize": 2,
117
+ "unit": "0.1 °C",
118
+ "minValue": 200,
119
+ "maxValue": 650,
120
+ "defaultValue": 640
121
+ },
122
+
123
+ {
124
+ "#": "19",
125
+ "label": "Calibration",
126
+ "valueSize": 4,
127
+ "unsigned": true,
128
+ "allowManualEntry": false,
129
+ "defaultValue": 1379350, // Not sure
130
+ "options": [
131
+ {
132
+ "label": "Uncalibrated / Calibrate Meter",
133
+ "value": 1379350
134
+ },
135
+ {
136
+ "label": "Calibrated",
137
+ "value": 4278717462
138
+ }
139
+ ]
140
+ }
141
+
142
+ // Need to figure out what these do:
143
+ // {
144
+ // "#": "3",
145
+ // "label": "Unknown param 3",
146
+ // "valueSize": 1,
147
+ // "minValue": 0,
148
+ // "maxValue": 255,
149
+ // "defaultValue": 70,
150
+ // "unsigned": true
151
+ // },
152
+ // {
153
+ // "#": "12",
154
+ // "label": "Unknown param 12",
155
+ // "valueSize": 1,
156
+ // "minValue": 0,
157
+ // "maxValue": 255,
158
+ // "defaultValue": 4,
159
+ // "unsigned": true
160
+ // },
161
+ // {
162
+ // "#": "13",
163
+ // "label": "Unknown param 13",
164
+ // "valueSize": 1,
165
+ // "minValue": 0,
166
+ // "maxValue": 255,
167
+ // "defaultValue": 4,
168
+ // "unsigned": true
169
+ // },
170
+ // {
171
+ // "#": "14",
172
+ // "label": "Unknown param 14",
173
+ // "valueSize": 1,
174
+ // "minValue": 0,
175
+ // "maxValue": 255,
176
+ // "defaultValue": 4,
177
+ // "unsigned": true
178
+ // },
179
+ // {
180
+ // "#": "15",
181
+ // "label": "Unknown param 15",
182
+ // "valueSize": 1,
183
+ // "minValue": 0,
184
+ // "maxValue": 255,
185
+ // "defaultValue": 10,
186
+ // "unsigned": true
187
+ // },
188
+ // {
189
+ // "#": "16",
190
+ // "label": "Unknown param 16",
191
+ // "valueSize": 1,
192
+ // "minValue": 0,
193
+ // "maxValue": 255,
194
+ // "defaultValue": 20,
195
+ // "unsigned": true
196
+ // },
197
+ // {
198
+ // "#": "17",
199
+ // "label": "Unknown param 17",
200
+ // "valueSize": 1,
201
+ // "minValue": 0,
202
+ // "maxValue": 255,
203
+ // "defaultValue": 11,
204
+ // "unsigned": true
205
+ // },
206
+ // {
207
+ // "#": "18",
208
+ // "label": "Unknown param 18",
209
+ // "valueSize": 1,
210
+ // "minValue": 0,
211
+ // "maxValue": 255,
212
+ // "defaultValue": 2,
213
+ // "unsigned": true
214
+ // },
215
+ // {
216
+ // "#": "20",
217
+ // "label": "Unknown param 20",
218
+ // "valueSize": 1,
219
+ // "minValue": 0,
220
+ // "maxValue": 255,
221
+ // "defaultValue": 255,
222
+ // "unsigned": true
223
+ // },
224
+ // {
225
+ // "#": "25",
226
+ // "label": "Unknown param 25",
227
+ // "valueSize": 2,
228
+ // "minValue": 0,
229
+ // "maxValue": 65535,
230
+ // "defaultValue": 1082,
231
+ // "unsigned": true
232
+ // },
233
+ // {
234
+ // "#": "26",
235
+ // "label": "Unknown param 26",
236
+ // "valueSize": 2,
237
+ // "defaultValue": 771,
238
+ // "unsigned": true
239
+ // },
240
+ // {
241
+ // "#": "36",
242
+ // "label": "Unknown param 36",
243
+ // "valueSize": 1,
244
+ // "minValue": 0,
245
+ // "maxValue": 255,
246
+ // "defaultValue": 7,
247
+ // "unsigned": true
248
+ // },
249
+ // {
250
+ // "#": "37",
251
+ // "label": "Unknown param 37",
252
+ // "valueSize": 1,
253
+ // "minValue": 0,
254
+ // "maxValue": 255,
255
+ // "defaultValue": 4,
256
+ // "unsigned": true
257
+ // },
258
+ // {
259
+ // "#": "39",
260
+ // "label": "Unknown param 39",
261
+ // "valueSize": 1,
262
+ // "minValue": 0,
263
+ // "maxValue": 255,
264
+ // "defaultValue": 1,
265
+ // "unsigned": true
266
+ // },
267
+ // {
268
+ // "#": "40",
269
+ // "label": "Unknown param 40",
270
+ // "valueSize": 1,
271
+ // "minValue": 0,
272
+ // "maxValue": 255,
273
+ // "defaultValue": 5,
274
+ // "unsigned": true
275
+ // },
276
+ // {
277
+ // "#": "81",
278
+ // "label": "Unknown param 81",
279
+ // "valueSize": 1,
280
+ // "minValue": 0,
281
+ // "maxValue": 255,
282
+ // "defaultValue": 0,
283
+ // "unsigned": true
284
+ // },
285
+ // {
286
+ // "#": "84",
287
+ // "label": "Unknown param 84",
288
+ // "valueSize": 1,
289
+ // "minValue": 0,
290
+ // "maxValue": 255,
291
+ // "defaultValue": 0,
292
+ // "unsigned": true
293
+ // },
294
+ // {
295
+ // "#": "167",
296
+ // "label": "Unknown param 167",
297
+ // "valueSize": 1,
298
+ // "minValue": 0,
299
+ // "maxValue": 255,
300
+ // "defaultValue": 1,
301
+ // "unsigned": true
302
+ // },
303
+ // {
304
+ // "#": "169",
305
+ // "label": "Unknown param 169",
306
+ // "valueSize": 1,
307
+ // "minValue": 0,
308
+ // "maxValue": 255,
309
+ // "defaultValue": 1,
310
+ // "unsigned": true
311
+ // }
312
+ ]
313
+ }
@@ -2,7 +2,7 @@
2
2
  "manufacturer": "Zooz",
3
3
  "manufacturerId": "0x027a",
4
4
  "label": "ZEN20",
5
- "description": "Z-Wave Plus Power Strip, VER. 2.0",
5
+ "description": "Z-Wave Plus Power Strip",
6
6
  "devices": [
7
7
  {
8
8
  "productType": "0xa000",
@@ -6,12 +6,13 @@
6
6
  "devices": [
7
7
  {
8
8
  "productType": "0x0200",
9
- "productId": "0xd00c"
9
+ "productId": "0xd00c",
10
+ "zwaveAllianceId": 3331
10
11
  }
11
12
  ],
12
13
  "firmwareVersion": {
13
- "min": "0.0",
14
- "max": "255.255"
14
+ "min": "1.21",
15
+ "max": "1.24"
15
16
  },
16
17
  "paramInformation": [
17
18
  {
@@ -20,8 +21,8 @@
20
21
  },
21
22
  {
22
23
  "#": "3",
23
- "label": "Send Basic Report on State Change",
24
24
  "$import": "~/templates/master_template.json#base_enable_disable",
25
+ "label": "Send Basic Report on State Change",
25
26
  "defaultValue": 1
26
27
  },
27
28
  {
@@ -71,8 +72,8 @@
71
72
  },
72
73
  {
73
74
  "#": "9",
74
- "label": "Use External Switch for Inclusion/Exclusion",
75
75
  "$import": "~/templates/master_template.json#base_enable_disable",
76
+ "label": "Use External Switch for Inclusion/Exclusion",
76
77
  "defaultValue": 1
77
78
  },
78
79
  {
@@ -129,14 +130,14 @@
129
130
  },
130
131
  {
131
132
  "#": "13",
133
+ "$import": "~/templates/master_template.json#base_enable_disable",
132
134
  "label": "Over Current Protection",
133
135
  "description": "Triggered at over 2.1A for 20 seconds continuously.",
134
- "$import": "~/templates/master_template.json#base_enable_disable",
135
136
  "defaultValue": 1
136
137
  },
137
138
  {
138
139
  "#": "14",
139
- "label": "Power Report Absolute Threshold",
140
+ "label": "Power Report: Change Threshold",
140
141
  "unit": "W",
141
142
  "valueSize": 2,
142
143
  "minValue": 0,
@@ -146,7 +147,7 @@
146
147
  },
147
148
  {
148
149
  "#": "15",
149
- "label": "Power Report Percentage Threshold",
150
+ "label": "Power Report: Relative Change Threshold",
150
151
  "unit": "%",
151
152
  "valueSize": 1,
152
153
  "minValue": 0,
@@ -238,9 +239,9 @@
238
239
  },
239
240
  {
240
241
  "#": "32",
242
+ "$import": "~/templates/master_template.json#base_0-99_nounit",
241
243
  "label": "Startup Brightness",
242
244
  "description": "When the light is turned from off to on, if the target brightness is lower than the startup brightness, the brightness will first go to the startup brightness then fall to the target brightness.",
243
- "$import": "~/templates/master_template.json#base_0-99_nounit",
244
245
  "defaultValue": 0
245
246
  }
246
247
  ],
@@ -0,0 +1,123 @@
1
+ {
2
+ "manufacturer": "Vesternet",
3
+ "manufacturerId": "0x0330",
4
+ "label": "VES-ZW-HLD-016",
5
+ "description": "High Load Switch",
6
+ "devices": [
7
+ {
8
+ "productType": "0x0004",
9
+ "productId": "0xd019"
10
+ }
11
+ ],
12
+ "firmwareVersion": {
13
+ "min": "2.2.5",
14
+ "max": "2.2.7"
15
+ },
16
+ "paramInformation": [
17
+ {
18
+ "#": "2",
19
+ "$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
20
+ },
21
+ {
22
+ "#": "3",
23
+ "$import": "~/templates/master_template.json#base_enable_disable",
24
+ "label": "Send Basic Report on State Change",
25
+ "defaultValue": 1
26
+ },
27
+ {
28
+ "#": "4",
29
+ "$import": "~/templates/master_template.json#base_enable_disable",
30
+ "label": "Over Current Protection",
31
+ "description": "Triggered at over 16A.",
32
+ "defaultValue": 1
33
+ },
34
+ {
35
+ "#": "5",
36
+ "label": "Switch Type",
37
+ "valueSize": 1,
38
+ "defaultValue": 0,
39
+ "allowManualEntry": false,
40
+ "unsigned": true,
41
+ "options": [
42
+ {
43
+ "label": "Momentary",
44
+ "value": 0
45
+ },
46
+ {
47
+ "label": "Toggle",
48
+ "value": 1
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "#": "10",
54
+ "label": "Power Change Report Threshold",
55
+ "unit": "W",
56
+ "valueSize": 1,
57
+ "minValue": 0,
58
+ "maxValue": 255,
59
+ "unsigned": true,
60
+ "defaultValue": 5,
61
+ "options": [
62
+ {
63
+ "label": "Disable",
64
+ "value": 0
65
+ }
66
+ ]
67
+ },
68
+ {
69
+ "#": "11",
70
+ "label": "Current Change Report Threshold",
71
+ "unit": "0.1 A",
72
+ "valueSize": 1,
73
+ "minValue": 0,
74
+ "maxValue": 255,
75
+ "unsigned": true,
76
+ "defaultValue": 1,
77
+ "options": [
78
+ {
79
+ "label": "Disable",
80
+ "value": 0
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "#": "12",
86
+ "label": "Voltage Change Report Threshold",
87
+ "unit": "V",
88
+ "valueSize": 1,
89
+ "minValue": 0,
90
+ "maxValue": 255,
91
+ "unsigned": true,
92
+ "defaultValue": 1,
93
+ "options": [
94
+ {
95
+ "label": "Disable",
96
+ "value": 0
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "#": "13",
102
+ "label": "Energy/Power/Voltage/Current Report Interval",
103
+ "unit": "seconds",
104
+ "valueSize": 4,
105
+ "minValue": 0,
106
+ "maxValue": 2678400,
107
+ "unsigned": true,
108
+ "defaultValue": 1800,
109
+ "options": [
110
+ {
111
+ "label": "Disable",
112
+ "value": 0
113
+ }
114
+ ]
115
+ }
116
+ ],
117
+ "metadata": {
118
+ "inclusion": "Step 1. Set primary controller/gateway into inclusion mode.\nStep 2. Either power cycle the product, or triple press the action button.\n Step 3. The connected light will stay on solid for 3 seconds to indicate successful inclusion.",
119
+ "exclusion": "Step 1. Set primary controller/gateway into exclusion mode.\nStep 2. Triple press the action button.",
120
+ "reset": "Press and hold the action button for over 10 seconds. The connected light will be set to 50% brightness and flash slowly.",
121
+ "manual": "https://cdn.shopify.com/s/files/1/0066/8149/3559/files/VES-ZW-HLD-016.pdf"
122
+ }
123
+ }