@zwave-js/config 11.0.0-beta.3 → 11.0.0-beta.4

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.
@@ -140,6 +140,14 @@
140
140
  // The device has two endpoints with different device classes, but both need to exist
141
141
  "preserveEndpoints": [1, 2],
142
142
  // Not sure if necessary, but this can prevent missing updates on endpoint 1
143
- "mapRootReportsToEndpoint": 1
143
+ "mapRootReportsToEndpoint": 1,
144
+ // Hide CCs from root endpoint that are duplicated on the manually preserved endpoint 1
145
+ "commandClasses": {
146
+ "remove": {
147
+ "0x80": {
148
+ "endpoints": [0]
149
+ }
150
+ }
151
+ }
144
152
  }
145
153
  }
@@ -106,5 +106,10 @@
106
106
  "maxValue": 2678400,
107
107
  "defaultValue": 0
108
108
  }
109
- ]
109
+ ],
110
+ "metadata": {
111
+ "inclusion": "Automatic Non-Secure Inclusion\n1. Perform the steps in the INSTALLATION section above. If the plug-in has not already been included into a Z-Wave network, the LED indicator will blink rapidly. Otherwise, the plug-in has already been included and should first be excluded by following the instructions in the EXCLUSION section below.\n2. Set your Z-Wave controller into learning mode (refer to your controller's manual for instructions). The plug-in should be recognized and automatically included into your Z-Wave network.\n3. The auto-inclusion function will be disabled after the plug-in is included.\n\nManual Non-Secure Inclusion\n1. Perform the steps in the INSTALLATION section above. If the plug-in has not already been included into a Z-Wave network, the LED indicator will blink rapidly. Otherwise, the plug-in has already been included and should first be excluded by following the instructions in the EXCLUSION section below.\n2. Set your Z-Wave® controller into learning mode (refer to your controller's manual for instructions).\n3. Triple-click the Z-Button on the plug-in. The plug-in should be recognized and included into your Z-Wave network.\n\nManual Secure Inclusion\n1. Perform the steps in the INSTALLATION section above. If the plug-in has not already been included into a Z-Wave network, the LED indicator will blink rapidly. Otherwise, the plug-in has already been included and should first be excluded by following the instructions in the EXCLUSION section below.\n2. Set your Z-Wave controller into node secure mode (refer to your controller's manual for instructions).\n3. Press and hold the Z-Button for about 3 seconds. The LED indicator will begin blinking rapidly and the plug-in should be recognized and included into your Z- Wave network.",
112
+ "exclusion": "1. Ensure that the plug-in is inserted into an AC outlet.\n2. Set your Z-Wave controller into learning mode (refer to your controller's manual for instructions).\n3. Triple-click the Z-Button. The plug-in will be removed from your Z-Wave network.",
113
+ "reset": "Note that the plug-in can only be reset if it is included in a Z-Wave network.\n1. Ensure that the plug-in is inserted into an AC outlet.\n2. Press and hold the Z-Button on the plug-in for more than 20 seconds. The LED indicator will illuminate steadily for about 3 seconds, then will begin blinking slowly."
114
+ }
110
115
  }
@@ -165,5 +165,17 @@
165
165
  }
166
166
  ]
167
167
  }
168
- ]
168
+ ],
169
+ "compat": {
170
+ // https://github.com/zwave-js/node-zwave-js/issues/5686
171
+ // The device supports Binary Switch CC to control the tilt, but it is not linked
172
+ // to the Window Covering CC values. Remove the Binary Switch CC to avoid confusion.
173
+ "commandClasses": {
174
+ "remove": {
175
+ "0x25": {
176
+ "endpoints": "*"
177
+ }
178
+ }
179
+ }
180
+ }
169
181
  }
@@ -77,9 +77,28 @@
77
77
  "defaultValue": 150,
78
78
  "unsigned": true
79
79
  },
80
+ {
81
+ "#": "52",
82
+ "$if": "firmwareVersion >= 3.6",
83
+ "$import": "~/templates/master_template.json#base_enable_disable",
84
+ "label": "Equal Curtain Trip Times (Opening and Closing)",
85
+ "description": "Enabling this disables parameter #51",
86
+ "defaultValue": 1
87
+ },
80
88
  {
81
89
  "#": "35",
82
- "label": "Curtain Trip Time",
90
+ "label": "Curtain Trip Time (Closing)",
91
+ "valueSize": 2,
92
+ "unit": "0.01 seconds",
93
+ "minValue": 500,
94
+ "maxValue": 32767,
95
+ "defaultValue": 15000,
96
+ "unsigned": true
97
+ },
98
+ {
99
+ "#": "51",
100
+ "$if": "firmwareVersion >= 3.6",
101
+ "label": "Curtain Trip Time (Opening)",
83
102
  "valueSize": 2,
84
103
  "unit": "0.01 seconds",
85
104
  "minValue": 500,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "11.0.0-beta.3",
3
+ "version": "11.0.0-beta.4",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -58,7 +58,7 @@
58
58
  "test:dirty": "node -r ../../maintenance/esbuild-register.js ../maintenance/src/resolveDirtyTests.ts --run"
59
59
  },
60
60
  "dependencies": {
61
- "@zwave-js/core": "11.0.0-beta.3",
61
+ "@zwave-js/core": "11.0.0-beta.4",
62
62
  "@zwave-js/shared": "11.0.0-beta.1",
63
63
  "alcalzone-shared": "^4.0.8",
64
64
  "ansi-colors": "^4.1.3",
@@ -80,7 +80,7 @@
80
80
  "@types/sinon": "^10.0.14",
81
81
  "@types/xml2js": "^0.4.11",
82
82
  "@types/yargs": "^17.0.24",
83
- "@zwave-js/maintenance": "11.0.0-beta.3",
83
+ "@zwave-js/maintenance": "11.0.0-beta.4",
84
84
  "ava": "^4.3.3",
85
85
  "comment-json": "^4.2.3",
86
86
  "del-cli": "^5.0.0",