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): update lifeline config and parameters for Philio PAN06 v1 #3591

Merged
merged 2 commits into from
Oct 25, 2021
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
31 changes: 29 additions & 2 deletions packages/config/config/devices/0x013c/pan06_0.0-1.7.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,19 @@
"label": "Relay 1 + 2",
"maxNodes": 1,
"isLifeline": true
// Corresponds to endpoint 1 (both relays)
},
"2": {
"label": "Relay 1",
"maxNodes": 1
"maxNodes": 1,
"isLifeline": true
// Corresponds to endpoint 2
},
"3": {
"label": "Relay 2",
"maxNodes": 1
"maxNodes": 1,
"isLifeline": true
// Corresponds to endpoint 3
}
},
"paramInformation": [
Expand Down Expand Up @@ -82,6 +87,28 @@
"value": 3
}
]
},
{
// This parameter is undocumented, but necessary for endpoint reporting
"#": "11",
"label": "Send Reports From Endpoints",
"description": "Enable this to distinguish between the relays.",
"valueSize": 1,
"minValue": 1,
"maxValue": 2,
"defaultValue": 1,
"unsigned": true,
"allowManualEntry": false,
"options": [
{
"label": "Disable",
"value": 1
},
{
"label": "Enable",
"value": 2
}
]
}
],
"compat": {
Expand Down