Skip to content

Commit

Permalink
fix(config): correct lifeline association and param 3 for ZWN-RSM2-PL…
Browse files Browse the repository at this point in the history
…US (#4046)
  • Loading branch information
ronytomen authored Jan 10, 2022
1 parent 583645c commit 7af5dc9
Showing 1 changed file with 26 additions and 3 deletions.
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
}
}
}
}
}

0 comments on commit 7af5dc9

Please sign in to comment.