@zwave-js/config 8.6.0 → 8.7.1-20211103

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.
@@ -2,7 +2,7 @@
2
2
  "manufacturer": "HELTUN",
3
3
  "manufacturerId": "0x0344",
4
4
  "label": "HE-HT01",
5
- "description": "Advanced Programmable Thermostat for Heating Systems",
5
+ "description": "Heating Thermostat",
6
6
  "devices": [
7
7
  {
8
8
  "productType": "0x0004",
@@ -104,7 +104,7 @@
104
104
  "valueSize": 1,
105
105
  "minValue": 0,
106
106
  "maxValue": 1,
107
- "defaultValue": 1,
107
+ "defaultValue": 0,
108
108
  "allowManualEntry": false,
109
109
  "options": [
110
110
  {
@@ -2,7 +2,7 @@
2
2
  "manufacturer": "Aeotec Ltd.",
3
3
  "manufacturerId": "0x0371",
4
4
  "label": "ZWA009",
5
- "description": "aërQ Temperature and Humidity Sensor",
5
+ "description": "aërQ Temperature and Humidity Sensor v1.0",
6
6
  "devices": [
7
7
  {
8
8
  "productType": "0x0002",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "firmwareVersion": {
21
21
  "min": "0.0",
22
- "max": "255.255"
22
+ "max": "1.255"
23
23
  },
24
24
  "associations": {
25
25
  "1": {
@@ -0,0 +1,226 @@
1
+ {
2
+ "manufacturer": "Aeotec Ltd.",
3
+ "manufacturerId": "0x0371",
4
+ "label": "ZWA009",
5
+ "description": "aërQ Temperature and Humidity Sensor v1.0",
6
+ "devices": [
7
+ {
8
+ "productType": "0x0002",
9
+ "productId": "0x0009"
10
+ },
11
+ {
12
+ "productType": "0x0102",
13
+ "productId": "0x0009"
14
+ },
15
+ {
16
+ "productType": "0x0202",
17
+ "productId": "0x0009"
18
+ }
19
+ ],
20
+ "firmwareVersion": {
21
+ "min": "11.1",
22
+ "max": "11.1"
23
+ },
24
+ "associations": {
25
+ "1": {
26
+ "label": "Lifeline",
27
+ "maxNodes": 5,
28
+ "isLifeline": true
29
+ },
30
+ "2": {
31
+ "label": "High Temperature",
32
+ "maxNodes": 5
33
+ },
34
+ "3": {
35
+ "label": "Low Temperature",
36
+ "maxNodes": 5
37
+ },
38
+ "4": {
39
+ "label": "High Humidity",
40
+ "maxNodes": 5
41
+ },
42
+ "5": {
43
+ "label": "Low Humidity",
44
+ "maxNodes": 5
45
+ },
46
+ "6": {
47
+ "label": "Air Temperature (Multilevel)",
48
+ "maxNodes": 5
49
+ }
50
+ },
51
+ "paramInformation": [
52
+ {
53
+ "#": "1",
54
+ "label": "Temperature Change Report Threshold",
55
+ "unit": "0.1 °(C/F)",
56
+ "unsigned": true,
57
+ "valueSize": 1,
58
+ "minValue": 0,
59
+ "maxValue": 100,
60
+ "defaultValue": 20,
61
+ "options": [
62
+ {
63
+ "label": "Disable",
64
+ "value": 0
65
+ }
66
+ ]
67
+ },
68
+ {
69
+ "#": "2",
70
+ "label": "Humidity Change Report Threshhold",
71
+ "unit": "%",
72
+ "unsigned": true,
73
+ "valueSize": 1,
74
+ "minValue": 0,
75
+ "maxValue": 20,
76
+ "defaultValue": 5,
77
+ "options": [
78
+ {
79
+ "label": "Disable",
80
+ "value": 0
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "#": "4",
86
+ "label": "Automatic Reporting Interval",
87
+ "description": "Allowable Range: 30-65535",
88
+ "unit": "seconds",
89
+ "unsigned": true,
90
+ "valueSize": 2,
91
+ "minValue": 0,
92
+ "maxValue": 65535,
93
+ "defaultValue": 43200,
94
+ "options": [
95
+ {
96
+ "label": "Disable",
97
+ "value": 0
98
+ }
99
+ ]
100
+ },
101
+ {
102
+ "#": "5",
103
+ "label": "High Temperature Basic Set Threshhold",
104
+ "unit": "0.1 °(C/F)",
105
+ "unsigned": true,
106
+ "valueSize": 2,
107
+ "minValue": 0,
108
+ "maxValue": 1000,
109
+ "defaultValue": 0,
110
+ "options": [
111
+ {
112
+ "label": "Disable",
113
+ "value": 0
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ "#": "10",
119
+ "label": "High Temperature Basic Set Value",
120
+ "description": "Allowable Range: 0-99, 255.",
121
+ "unsigned": true,
122
+ "valueSize": 1,
123
+ "minValue": 0,
124
+ "maxValue": 255,
125
+ "defaultValue": 0
126
+ },
127
+ {
128
+ "#": "6",
129
+ "label": "Low Temperature Basic Set Threshhold",
130
+ "description": "Allowable Range: 200-1000.",
131
+ "unit": "0.1 °(C/F)",
132
+ "unsigned": true,
133
+ "valueSize": 2,
134
+ "minValue": 0,
135
+ "maxValue": 1000,
136
+ "defaultValue": 0,
137
+ "options": [
138
+ {
139
+ "label": "Disable",
140
+ "value": 0
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ "#": "9",
146
+ "label": "Low Temperature Basic Set Value",
147
+ "description": "Allowable Range: 0-99, 255.",
148
+ "unsigned": true,
149
+ "valueSize": 1,
150
+ "minValue": 0,
151
+ "maxValue": 255,
152
+ "defaultValue": 255
153
+ },
154
+ {
155
+ "#": "7",
156
+ "label": "High Humidity Basic Set Threshhold",
157
+ "unit": "%",
158
+ "unsigned": true,
159
+ "valueSize": 1,
160
+ "minValue": 0,
161
+ "maxValue": 90,
162
+ "defaultValue": 0,
163
+ "options": [
164
+ {
165
+ "label": "Disable",
166
+ "value": 0
167
+ }
168
+ ]
169
+ },
170
+ {
171
+ "#": "12",
172
+ "label": "High Humidity Trigger Basic Set Value",
173
+ "description": "Allowable Range: 0-99, 255.",
174
+ "unsigned": true,
175
+ "valueSize": 1,
176
+ "minValue": 0,
177
+ "maxValue": 255,
178
+ "defaultValue": 0
179
+ },
180
+ {
181
+ "#": "8",
182
+ "label": "Low Humidity Basic Set Threshhold",
183
+ "unit": "%",
184
+ "unsigned": true,
185
+ "valueSize": 1,
186
+ "minValue": 0,
187
+ "maxValue": 90,
188
+ "defaultValue": 0,
189
+ "options": [
190
+ {
191
+ "label": "Disable",
192
+ "value": 0
193
+ }
194
+ ]
195
+ },
196
+ {
197
+ "#": "11",
198
+ "label": "Low Humidity Trigger Basic Set Value",
199
+ "description": "Allowable Range: 0-99, 255.",
200
+ "unsigned": true,
201
+ "valueSize": 1,
202
+ "minValue": 0,
203
+ "maxValue": 255,
204
+ "defaultValue": 255
205
+ },
206
+ {
207
+ "#": "13",
208
+ "label": "Humidity Offset for Mold Danger Notification",
209
+ "unit": "%",
210
+ "unsigned": true,
211
+ "valueSize": 1,
212
+ "minValue": 0,
213
+ "maxValue": 10,
214
+ "defaultValue": 0
215
+ },
216
+ {
217
+ "#": "64",
218
+ "$import": "~/0x0086/templates/aeotec_template.json#celsius_fahrenheit",
219
+ "valueSize": 1
220
+ },
221
+ {
222
+ "#": "255",
223
+ "$import": "~/0x0086/templates/aeotec_template.json#factory_reset_complete"
224
+ }
225
+ ]
226
+ }
@@ -0,0 +1,282 @@
1
+ {
2
+ "manufacturer": "Aeotec Ltd.",
3
+ "manufacturerId": "0x0371",
4
+ "label": "ZWA039",
5
+ "description": "aërQ Temperature and Humidity Sensor v2.0",
6
+ "devices": [
7
+ {
8
+ "productType": "0x0002",
9
+ "productId": "0x0009"
10
+ },
11
+ {
12
+ "productType": "0x0102",
13
+ "productId": "0x0009"
14
+ },
15
+ {
16
+ "productType": "0x0202",
17
+ "productId": "0x0009"
18
+ }
19
+ ],
20
+ "firmwareVersion": {
21
+ "min": "2.0",
22
+ "max": "10.255"
23
+ },
24
+ "associations": {
25
+ "1": {
26
+ "label": "Lifeline",
27
+ "maxNodes": 5,
28
+ "isLifeline": true
29
+ },
30
+ "2": {
31
+ "label": "High Temperature",
32
+ "maxNodes": 5
33
+ },
34
+ "3": {
35
+ "label": "Low Temperature",
36
+ "maxNodes": 5
37
+ },
38
+ "4": {
39
+ "label": "High Humidity",
40
+ "maxNodes": 5
41
+ },
42
+ "5": {
43
+ "label": "Low Humidity",
44
+ "maxNodes": 5
45
+ },
46
+ "6": {
47
+ "label": "Air Temperature (Multilevel)",
48
+ "maxNodes": 5
49
+ }
50
+ },
51
+ "paramInformation": [
52
+ {
53
+ "#": "1",
54
+ "label": "Temperature Change Report Threshold",
55
+ "unit": "0.1 °(C/F)",
56
+ "unsigned": true,
57
+ "valueSize": 1,
58
+ "minValue": 0,
59
+ "maxValue": 100,
60
+ "defaultValue": 20,
61
+ "options": [
62
+ {
63
+ "label": "Disable",
64
+ "value": 0
65
+ }
66
+ ]
67
+ },
68
+ {
69
+ "#": "2",
70
+ "label": "Humidity Change Report Threshhold",
71
+ "unit": "%",
72
+ "unsigned": true,
73
+ "valueSize": 1,
74
+ "minValue": 0,
75
+ "maxValue": 20,
76
+ "defaultValue": 5,
77
+ "options": [
78
+ {
79
+ "label": "Disable",
80
+ "value": 0
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "#": "3",
86
+ "label": "Threshold Check Interval",
87
+ "unit": "minutes",
88
+ "unsigned": true,
89
+ "valueSize": 2,
90
+ "minValue": 1,
91
+ "maxValue": 255,
92
+ "defaultValue": 15
93
+ },
94
+ {
95
+ "#": "4",
96
+ "label": "Automatic Reporting Interval",
97
+ "description": "Allowable Range: 30-65535",
98
+ "unit": "seconds",
99
+ "unsigned": true,
100
+ "valueSize": 2,
101
+ "minValue": 0,
102
+ "maxValue": 65535,
103
+ "defaultValue": 43200,
104
+ "options": [
105
+ {
106
+ "label": "Disable",
107
+ "value": 0
108
+ }
109
+ ]
110
+ },
111
+ {
112
+ "#": "5",
113
+ "label": "High Temperature Basic Set Threshhold",
114
+ "unit": "0.1 °(C/F)",
115
+ "unsigned": true,
116
+ "valueSize": 2,
117
+ "minValue": 0,
118
+ "maxValue": 1000,
119
+ "defaultValue": 0,
120
+ "options": [
121
+ {
122
+ "label": "Disable",
123
+ "value": 0
124
+ }
125
+ ]
126
+ },
127
+ {
128
+ "#": "10",
129
+ "label": "High Temperature Basic Set Value",
130
+ "description": "Allowable Range: 0-99, 255.",
131
+ "unsigned": true,
132
+ "valueSize": 1,
133
+ "minValue": 0,
134
+ "maxValue": 255,
135
+ "defaultValue": 0
136
+ },
137
+ {
138
+ "#": "6",
139
+ "label": "Low Temperature Basic Set Threshhold",
140
+ "description": "Allowable Range: 200-1000.",
141
+ "unit": "0.1 °(C/F)",
142
+ "unsigned": true,
143
+ "valueSize": 2,
144
+ "minValue": 0,
145
+ "maxValue": 1000,
146
+ "defaultValue": 0,
147
+ "options": [
148
+ {
149
+ "label": "Disable",
150
+ "value": 0
151
+ }
152
+ ]
153
+ },
154
+ {
155
+ "#": "9",
156
+ "label": "Low Temperature Basic Set Value",
157
+ "description": "Allowable Range: 0-99, 255.",
158
+ "unsigned": true,
159
+ "valueSize": 1,
160
+ "minValue": 0,
161
+ "maxValue": 255,
162
+ "defaultValue": 255
163
+ },
164
+ {
165
+ "#": "7",
166
+ "label": "High Humidity Basic Set Threshhold",
167
+ "unit": "%",
168
+ "unsigned": true,
169
+ "valueSize": 1,
170
+ "minValue": 0,
171
+ "maxValue": 90,
172
+ "defaultValue": 0,
173
+ "options": [
174
+ {
175
+ "label": "Disable",
176
+ "value": 0
177
+ }
178
+ ]
179
+ },
180
+ {
181
+ "#": "16",
182
+ "label": "Check Interval for Parameter 5, 6, 7, 8",
183
+ "unit": "minutes",
184
+ "unsigned": true,
185
+ "valueSize": 1,
186
+ "minValue": 1,
187
+ "maxValue": 255,
188
+ "defaultValue": 15
189
+ },
190
+ {
191
+ "#": "12",
192
+ "label": "High Humidity Trigger Basic Set Value",
193
+ "description": "Allowable Range: 0-99, 255.",
194
+ "unsigned": true,
195
+ "valueSize": 1,
196
+ "minValue": 0,
197
+ "maxValue": 255,
198
+ "defaultValue": 0
199
+ },
200
+ {
201
+ "#": "8",
202
+ "label": "Low Humidity Basic Set Threshhold",
203
+ "unit": "%",
204
+ "unsigned": true,
205
+ "valueSize": 1,
206
+ "minValue": 0,
207
+ "maxValue": 90,
208
+ "defaultValue": 0,
209
+ "options": [
210
+ {
211
+ "label": "Disable",
212
+ "value": 0
213
+ }
214
+ ]
215
+ },
216
+ {
217
+ "#": "11",
218
+ "label": "Low Humidity Trigger Basic Set Value",
219
+ "description": "Allowable Range: 0-99, 255.",
220
+ "unsigned": true,
221
+ "valueSize": 1,
222
+ "minValue": 0,
223
+ "maxValue": 255,
224
+ "defaultValue": 255
225
+ },
226
+ {
227
+ "#": "13",
228
+ "label": "Humidity Offset for Mold Danger Notification",
229
+ "unit": "%",
230
+ "unsigned": true,
231
+ "valueSize": 1,
232
+ "minValue": 0,
233
+ "maxValue": 10,
234
+ "defaultValue": 0
235
+ },
236
+ {
237
+ "#": "65[0x01]",
238
+ "label": "Sensor Report after Inclusion: Battery",
239
+ "unsigned": true,
240
+ "valueSize": 1,
241
+ "minValue": 0,
242
+ "maxValue": 1,
243
+ "defaultValue": 1
244
+ },
245
+ {
246
+ "#": "65[0x02]",
247
+ "label": "Sensor Report after Inclusion: Temperature",
248
+ "unsigned": true,
249
+ "valueSize": 1,
250
+ "minValue": 0,
251
+ "maxValue": 1,
252
+ "defaultValue": 1
253
+ },
254
+ {
255
+ "#": "65[0x04]",
256
+ "label": "Sensor Report after Inclusion: Humidity",
257
+ "unsigned": true,
258
+ "valueSize": 1,
259
+ "minValue": 0,
260
+ "maxValue": 1,
261
+ "defaultValue": 1
262
+ },
263
+ {
264
+ "#": "65[0x08]",
265
+ "label": "Sensor Report after Inclusion: Dew Point",
266
+ "unsigned": true,
267
+ "valueSize": 1,
268
+ "minValue": 0,
269
+ "maxValue": 1,
270
+ "defaultValue": 1
271
+ },
272
+ {
273
+ "#": "64",
274
+ "$import": "~/0x0086/templates/aeotec_template.json#celsius_fahrenheit",
275
+ "valueSize": 1
276
+ },
277
+ {
278
+ "#": "255",
279
+ "$import": "~/0x0086/templates/aeotec_template.json#factory_reset_complete"
280
+ }
281
+ ]
282
+ }