@zwave-js/config 8.10.2-20220110 → 8.10.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/0x011a/zwn-rsm2.json +26 -3
- package/package.json +6 -5
- package/config/devices/index.json +0 -33891
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018-2021 AlCalzone
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"1": {
|
|
23
23
|
"label": "Lifeline",
|
|
24
24
|
"maxNodes": 1,
|
|
25
|
-
"isLifeline": true
|
|
25
|
+
"isLifeline": true,
|
|
26
|
+
"multiChannel": true
|
|
26
27
|
},
|
|
27
28
|
"2": {
|
|
28
29
|
"label": "Switch Binary Report EP1",
|
|
@@ -40,9 +41,20 @@
|
|
|
40
41
|
"description": "Send unsolicited status report to primary controller",
|
|
41
42
|
"valueSize": 1,
|
|
42
43
|
"minValue": 0,
|
|
43
|
-
"maxValue":
|
|
44
|
+
"maxValue": 1,
|
|
44
45
|
"defaultValue": 0,
|
|
45
|
-
"unsigned": true
|
|
46
|
+
"unsigned": true,
|
|
47
|
+
"allowManualEntry": false,
|
|
48
|
+
"options": [
|
|
49
|
+
{
|
|
50
|
+
"label": "Disabled",
|
|
51
|
+
"value": 0
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"label": "Send Broadcast",
|
|
55
|
+
"value": 1
|
|
56
|
+
}
|
|
57
|
+
]
|
|
46
58
|
}
|
|
47
59
|
],
|
|
48
60
|
"metadata": {
|
|
@@ -50,5 +62,16 @@
|
|
|
50
62
|
"exclusion": "When the controller is in remove mode, press and release the program button of ZWN-RSM2 module, or Flick 3 times of the connected switch with Aux1 line (or Aux2 line) in 1.5 second. Then the controller will remove the module from current Z-Wave network",
|
|
51
63
|
"reset": "Once program button is pressed and hold for 10 second, the device will send a device reset locally notification to controller. Then clear all of information for the network, and restore factory defaults, and reset the module. Use this procedure only in the event that the network primary controller is missing or otherwise inoperable",
|
|
52
64
|
"manual": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=MarketCertificationFiles/2242/ZWN-RSM2%202017-2-28.pdf"
|
|
65
|
+
},
|
|
66
|
+
"compat": {
|
|
67
|
+
"commandClasses": {
|
|
68
|
+
"add": {
|
|
69
|
+
// The device needs a multi channel lifeline association (target endpoint 0),
|
|
70
|
+
// but only reports support for V2, which doesn't allow this.
|
|
71
|
+
"0x8e": {
|
|
72
|
+
"version": 3
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
53
76
|
}
|
|
54
77
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "8.10.2
|
|
3
|
+
"version": "8.10.2",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ts": "node -r esbuild-register"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@zwave-js/core": "8.10.
|
|
43
|
+
"@zwave-js/core": "8.10.2",
|
|
44
44
|
"@zwave-js/shared": "8.10.0",
|
|
45
45
|
"alcalzone-shared": "^4.0.1",
|
|
46
46
|
"ansi-colors": "^4.1.1",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"json-logic-js": "^2.0.1",
|
|
49
49
|
"json5": "^2.2.0",
|
|
50
50
|
"semver": "^7.3.5",
|
|
51
|
-
"winston": "^3.3.
|
|
51
|
+
"winston": "^3.3.4"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/fs-extra": "^9.0.13",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@types/semver": "^7.3.9",
|
|
61
61
|
"@types/xml2json": "^0.11.4",
|
|
62
62
|
"@types/yargs": "^17.0.8",
|
|
63
|
-
"@zwave-js/maintenance": "8.10.
|
|
63
|
+
"@zwave-js/maintenance": "8.10.2",
|
|
64
64
|
"axios": "^0.24.0",
|
|
65
65
|
"comment-json": "^4.1.1",
|
|
66
66
|
"esbuild": "*",
|
|
@@ -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": "071b67e629909230014126f7bc2f8979715c9265"
|
|
76
77
|
}
|