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): override endpoint indizes for heatapp! floor #5994

Merged
merged 1 commit into from
Jul 10, 2023
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
22 changes: 17 additions & 5 deletions packages/config/config/devices/0x017c/heatapp_floor.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manufacturer": "EbV",
"manufacturerId": "0x017c",
"label": "heatapp! floor",
"description": "heatapp! floor is a controller for thermal actuators in underfloor heating installations and is part of the heatapp! system, providing individual circ",
"description": "8-channel underfloor heating controller",
"devices": [
{
"productType": "0x0006",
Expand All @@ -16,7 +16,7 @@
"paramInformation": [
{
"#": "1",
"label": "Missing Radio Link time",
"label": "Missing Radio Link Time",
"unit": "minutes",
"valueSize": 1,
"minValue": 10,
Expand All @@ -26,8 +26,7 @@
},
{
"#": "2",
"label": "Relay type",
"description": "0 normal open, 1 normal close, 2 switching",
"label": "Relay Type",
"valueSize": 1,
"defaultValue": 0,
"allowManualEntry": false,
Expand All @@ -46,5 +45,18 @@
}
]
}
]
],
"compat": {
"overrideQueries": {
// The device has 8 sequential endpoints, but responds with random
// garbage when queried for its endpoint indizes
"Multi Channel": [
{
"method": "findEndpoints",
"result": [1, 2, 3, 4, 5, 6, 7, 8]
// No need to persist values, this is done as part of the interview
}
]
}
}
}