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 supported Thermostat modes for Eurotronics Spirit TRV #6436

Merged
merged 1 commit into from
Oct 19, 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
27 changes: 23 additions & 4 deletions packages/config/config/devices/0x0148/spirit.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,29 @@
]
}
],
"metadata": {
"comments": {
"level": "warning",
"text": "The thermostat is missing \"Manufacturer Specific\" from its list of supported modes, although the mode is supported. Application-specific workarounds may be necessary to switch to \"Manufacturer Specific\" mode."
"compat": {
"overrideQueries": {
// The device does not report "Manufacturer specific" as a supported thermostat mode
"Thermostat Mode": [
{
"method": "getSupportedModes",
"result": [0, 1, 11, 15, 31], // Off / Heat / Energy heat / Full power / Manufacturer specific
"persistValues": {
"supportedModes": [0, 1, 11, 15, 31]
},
"extendMetadata": {
"thermostatMode": {
"states": {
"0": "Off",
"1": "Heat",
"11": "Energy heat",
"15": "Full power",
"31": "Manufacturer specific"
}
}
}
}
]
}
}
}