@zwave-js/config 8.11.2-20220118 → 8.11.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.
- package/LICENSE +21 -0
- package/config/devices/0x0148/temp_humidity_sensor.json +132 -0
- package/config/devices/0x0208/hkzw_so03.json +125 -28
- package/config/devices/0x027a/zen16.json +175 -97
- package/config/devices/0x0330/ves-zw-dim-001.json +257 -0
- package/config/devices/0x0330/ves-zw-swi-002.json +60 -0
- package/config/devices/templates/master_template.json +38 -0
- package/package.json +3 -2
- package/config/devices/index.json +0 -33951
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Vesternet",
|
|
3
|
+
"manufacturerId": "0x0330",
|
|
4
|
+
"label": "VES-ZW-DIM-001",
|
|
5
|
+
"description": "2-Wire Capable Dimmer",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0200",
|
|
9
|
+
"productId": "0xd00c"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"paramInformation": [
|
|
17
|
+
{
|
|
18
|
+
"#": "2",
|
|
19
|
+
"$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"#": "3",
|
|
23
|
+
"label": "Send Basic Report on State Change",
|
|
24
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
25
|
+
"defaultValue": 1
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"#": "4",
|
|
29
|
+
"label": "Dimming Speed",
|
|
30
|
+
"valueSize": 1,
|
|
31
|
+
"unit": "seconds",
|
|
32
|
+
"minValue": 0,
|
|
33
|
+
"maxValue": 127,
|
|
34
|
+
"defaultValue": 1,
|
|
35
|
+
"unsigned": true
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"#": "5",
|
|
39
|
+
"label": "Minimum Dim Level",
|
|
40
|
+
"valueSize": 1,
|
|
41
|
+
"minValue": 0,
|
|
42
|
+
"maxValue": 50,
|
|
43
|
+
"defaultValue": 15,
|
|
44
|
+
"unsigned": true
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"#": "6",
|
|
48
|
+
"$import": "~/templates/master_template.json#maximum_dim_level_0-100"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"#": "7",
|
|
52
|
+
"$import": "~/templates/master_template.json#dimmer_type_trail_lead"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"#": "8",
|
|
56
|
+
"label": "Switch Type",
|
|
57
|
+
"valueSize": 1,
|
|
58
|
+
"minValue": 0,
|
|
59
|
+
"maxValue": 1,
|
|
60
|
+
"defaultValue": 0,
|
|
61
|
+
"allowManualEntry": false,
|
|
62
|
+
"unsigned": true,
|
|
63
|
+
"options": [
|
|
64
|
+
{
|
|
65
|
+
"label": "Momentary",
|
|
66
|
+
"value": 0
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"label": "Toggle",
|
|
70
|
+
"value": 1
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"#": "9",
|
|
76
|
+
"label": "Use External Switch for Inclusion/Exclusion",
|
|
77
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
78
|
+
"defaultValue": 1
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"#": "11",
|
|
82
|
+
"label": "Wiring Type",
|
|
83
|
+
"readOnly": true,
|
|
84
|
+
"valueSize": 1,
|
|
85
|
+
"minValue": 0,
|
|
86
|
+
"maxValue": 2,
|
|
87
|
+
"defaultValue": 0,
|
|
88
|
+
"unsigned": true,
|
|
89
|
+
"options": [
|
|
90
|
+
{
|
|
91
|
+
"label": "Unknown",
|
|
92
|
+
"value": 0
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"label": "2-wire (no neutral)",
|
|
96
|
+
"value": 1
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"label": "3-wire (with neutral)",
|
|
100
|
+
"value": 2
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"#": "12",
|
|
106
|
+
"label": "Load Type",
|
|
107
|
+
"readOnly": true,
|
|
108
|
+
"valueSize": 1,
|
|
109
|
+
"minValue": 0,
|
|
110
|
+
"maxValue": 3,
|
|
111
|
+
"defaultValue": 0,
|
|
112
|
+
"unsigned": true,
|
|
113
|
+
"options": [
|
|
114
|
+
{
|
|
115
|
+
"label": "Unknown",
|
|
116
|
+
"value": 0
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"label": "Resistive",
|
|
120
|
+
"value": 1
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"label": "Inductive",
|
|
124
|
+
"value": 2
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"label": "Capacitive",
|
|
128
|
+
"value": 3
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"#": "13",
|
|
134
|
+
"label": "Over Current Protection",
|
|
135
|
+
"description": "Triggered at over 2.1A for 20 seconds continuously.",
|
|
136
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
137
|
+
"defaultValue": 1
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"#": "14",
|
|
141
|
+
"label": "Power Report Absolute Threshold",
|
|
142
|
+
"unit": "W",
|
|
143
|
+
"valueSize": 2,
|
|
144
|
+
"minValue": 0,
|
|
145
|
+
"maxValue": 400,
|
|
146
|
+
"unsigned": true,
|
|
147
|
+
"defaultValue": 10
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"#": "15",
|
|
151
|
+
"label": "Power Report Percentage Threshold",
|
|
152
|
+
"unit": "%",
|
|
153
|
+
"valueSize": 1,
|
|
154
|
+
"minValue": 0,
|
|
155
|
+
"maxValue": 100,
|
|
156
|
+
"unsigned": true,
|
|
157
|
+
"defaultValue": 20
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"#": "21",
|
|
161
|
+
"label": "Power Report Interval",
|
|
162
|
+
"unit": "seconds",
|
|
163
|
+
"valueSize": 4,
|
|
164
|
+
"minValue": 0,
|
|
165
|
+
"maxValue": 2678400,
|
|
166
|
+
"unsigned": true,
|
|
167
|
+
"defaultValue": 600,
|
|
168
|
+
"options": [
|
|
169
|
+
{
|
|
170
|
+
"label": "Disable",
|
|
171
|
+
"value": 0
|
|
172
|
+
}
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"#": "22",
|
|
177
|
+
"label": "Energy Report Interval",
|
|
178
|
+
"unit": "seconds",
|
|
179
|
+
"valueSize": 4,
|
|
180
|
+
"minValue": 0,
|
|
181
|
+
"maxValue": 2678400,
|
|
182
|
+
"unsigned": true,
|
|
183
|
+
"defaultValue": 1800,
|
|
184
|
+
"options": [
|
|
185
|
+
{
|
|
186
|
+
"label": "Disable",
|
|
187
|
+
"value": 0
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"#": "23",
|
|
193
|
+
"label": "Voltage Report Interval",
|
|
194
|
+
"unit": "seconds",
|
|
195
|
+
"valueSize": 4,
|
|
196
|
+
"minValue": 0,
|
|
197
|
+
"maxValue": 2678400,
|
|
198
|
+
"unsigned": true,
|
|
199
|
+
"defaultValue": 3600,
|
|
200
|
+
"options": [
|
|
201
|
+
{
|
|
202
|
+
"label": "Disable",
|
|
203
|
+
"value": 0
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"#": "24",
|
|
209
|
+
"label": "Current Report Interval",
|
|
210
|
+
"unit": "seconds",
|
|
211
|
+
"valueSize": 4,
|
|
212
|
+
"minValue": 0,
|
|
213
|
+
"maxValue": 2678400,
|
|
214
|
+
"unsigned": true,
|
|
215
|
+
"defaultValue": 3600,
|
|
216
|
+
"options": [
|
|
217
|
+
{
|
|
218
|
+
"label": "Disable",
|
|
219
|
+
"value": 0
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"#": "31",
|
|
225
|
+
"label": "Dimming Curve",
|
|
226
|
+
"valueSize": 1,
|
|
227
|
+
"minValue": 0,
|
|
228
|
+
"maxValue": 1,
|
|
229
|
+
"allowManualEntry": false,
|
|
230
|
+
"unsigned": true,
|
|
231
|
+
"defaultValue": 0,
|
|
232
|
+
"options": [
|
|
233
|
+
{
|
|
234
|
+
"label": "Linear",
|
|
235
|
+
"value": 0
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"label": "Logarithmic",
|
|
239
|
+
"value": 1
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"#": "32",
|
|
245
|
+
"label": "Startup Brightness",
|
|
246
|
+
"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.",
|
|
247
|
+
"$import": "~/templates/master_template.json#base_0-99_nounit",
|
|
248
|
+
"defaultValue": 0
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"metadata": {
|
|
252
|
+
"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 successfuly inclusion.",
|
|
253
|
+
"exclusion": "Step 1. Set primary controller/gateway into exclusion mode.\nStep 2. Triple press the action button.",
|
|
254
|
+
"reset": "Press and hold the action button for over 10 seconds. The connected light will be set to 50% brightness and flash slowly.",
|
|
255
|
+
"manual": "https://cdn.shopify.com/s/files/1/0066/8149/3559/files/VES-ZW-DIM-001.pdf"
|
|
256
|
+
}
|
|
257
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Vesternet",
|
|
3
|
+
"manufacturerId": "0x0330",
|
|
4
|
+
"label": "VES-ZW-SWI-002",
|
|
5
|
+
"description": "2-Wire Capable Switch",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0200",
|
|
9
|
+
"productId": "0xd00f"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"paramInformation": [
|
|
17
|
+
{
|
|
18
|
+
"#": "2",
|
|
19
|
+
"$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"#": "3",
|
|
23
|
+
"label": "Send Basic Report on State Change",
|
|
24
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
25
|
+
"defaultValue": 1
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"#": "4",
|
|
29
|
+
"label": "Use External Switch for Inclusion/Exclusion",
|
|
30
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
31
|
+
"defaultValue": 1
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"#": "5",
|
|
35
|
+
"label": "Switch Type",
|
|
36
|
+
"valueSize": 1,
|
|
37
|
+
"minValue": 0,
|
|
38
|
+
"maxValue": 1,
|
|
39
|
+
"defaultValue": 0,
|
|
40
|
+
"allowManualEntry": false,
|
|
41
|
+
"unsigned": true,
|
|
42
|
+
"options": [
|
|
43
|
+
{
|
|
44
|
+
"label": "Momentary",
|
|
45
|
+
"value": 0
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"label": "Toggle",
|
|
49
|
+
"value": 1
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"metadata": {
|
|
55
|
+
"inclusion": "Step 1. Set primary controller/gateway into inclusion mode.\nStep 2. Either power cycle the product, or triple press the action button.",
|
|
56
|
+
"exclusion": "Step 1. Set primary controller/gateway into exclusion mode.\nStep 2. Triple press the action button.",
|
|
57
|
+
"reset": "Press and hold the action button for over 10 seconds.",
|
|
58
|
+
"manual": "https://cdn.shopify.com/s/files/1/0066/8149/3559/files/VES-ZW-SWI-002.pdf"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -158,6 +158,44 @@
|
|
|
158
158
|
}
|
|
159
159
|
]
|
|
160
160
|
},
|
|
161
|
+
"dimmer_type_trail_lead": {
|
|
162
|
+
"label": "Dimmer Mode",
|
|
163
|
+
"valueSize": 1,
|
|
164
|
+
"minValue": 0,
|
|
165
|
+
"maxValue": 1,
|
|
166
|
+
"defaultValue": 0,
|
|
167
|
+
"allowManualEntry": false,
|
|
168
|
+
"unsigned": true,
|
|
169
|
+
"options": [
|
|
170
|
+
{
|
|
171
|
+
"label": "Trailing edge",
|
|
172
|
+
"value": 0
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"label": "Leading edge",
|
|
176
|
+
"value": 1
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
"dimmer_type_lead_trail": {
|
|
181
|
+
"label": "Dimmer Mode",
|
|
182
|
+
"valueSize": 1,
|
|
183
|
+
"minValue": 0,
|
|
184
|
+
"maxValue": 1,
|
|
185
|
+
"defaultValue": 0,
|
|
186
|
+
"allowManualEntry": false,
|
|
187
|
+
"unsigned": true,
|
|
188
|
+
"options": [
|
|
189
|
+
{
|
|
190
|
+
"label": "Leading edge",
|
|
191
|
+
"value": 0
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"label": "Trailing edge",
|
|
195
|
+
"value": 1
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
},
|
|
161
199
|
"dimming_timing_with_0": {
|
|
162
200
|
"$import": "#base_0-255_nounit",
|
|
163
201
|
"unit": "10ms",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "8.11.2
|
|
3
|
+
"version": "8.11.2",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -72,5 +72,6 @@
|
|
|
72
72
|
"typescript": "4.5.4",
|
|
73
73
|
"xml2json": "^0.12.0",
|
|
74
74
|
"yargs": "^17.3.1"
|
|
75
|
-
}
|
|
75
|
+
},
|
|
76
|
+
"gitHead": "f4b8e06b80cd75177d5543ab4cb65a73123dab1b"
|
|
76
77
|
}
|