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 Fibaro FGMS001 config to conform to Fibaro official #7463

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
28 changes: 20 additions & 8 deletions packages/config/config/devices/0x010f/fgms001.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,30 @@
},
"associations": {
"1": {
"label": "Motion Sensor Status",
"maxNodes": 16
"label": "Lifeline",
"description": "Reports the device status and allows for assigning single device only (main controller by default).",
"maxNodes": 1,
"isLifeline": true
},
"2": {
"label": "Tamper Alarm",
"maxNodes": 16,
"isLifeline": true
"label": "Motion",
"description": "Sends motion detection and alarm cancellation frames to the associated devices.",
"maxNodes": 5
},
"3": {
"label": "Controller Updates",
"maxNodes": 1,
"isLifeline": true
"label": "Tamper",
"description": "Sends tamper alarm and alarm cancellation frames to the associated devices.",
"maxNodes": 5
},
"4": {
"label": "Motion BC",
"description": "Sends motion detection and alarm cancellation frames to the associated devices. Provides backward compatibility with controllers not supporting Z-Wave+ protocol.",
"maxNodes": 5
},
"5": {
"label": "Tamper BC",
"description": "Sends tamper alarm and alarm cancellation frames to the associated devices. Provides backward compatibility with controllers not supporting Z-Wave+ protocol.",
"maxNodes": 5
}
},
"paramInformation": [
Expand Down
Loading