Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(config): correct lifeline association and param 3 for ZWN-RSM2-PLUS #4046

Merged
merged 3 commits into from
Jan 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 26 additions & 3 deletions packages/config/config/devices/0x011a/zwn-rsm2.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"1": {
"label": "Lifeline",
"maxNodes": 1,
"isLifeline": true
"isLifeline": true,
"multiChannel": true
},
"2": {
"label": "Switch Binary Report EP1",
Expand All @@ -40,15 +41,37 @@
"description": "Send unsolicited status report to primary controller",
"valueSize": 1,
"minValue": 0,
"maxValue": 255,
"maxValue": 1,
"defaultValue": 0,
"unsigned": true
"unsigned": true,
"allowManualEntry": false,
"options": [
{
"label": "Disabled",
"value": 0
},
{
"label": "Send Broadcast",
"value": 1
}
]
}
],
"metadata": {
"inclusion": "When the controller is in add mode, press and release the program button of ZWN-RSM2 module,or Flick 3 times of the connected switch with Aux1 line(or Aux 2 line) in 1.5 second. Then the controller will add the module into current Z-Wave network",
"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",
"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",
"manual": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=MarketCertificationFiles/2242/ZWN-RSM2%202017-2-28.pdf"
},
"compat": {
"commandClasses": {
"add": {
// The device needs a multi channel lifeline association (target endpoint 0),
// but only reports support for V2, which doesn't allow this.
"0x8e": {
"version": 3
}
}
}
}
}