[codex] vaillant: generate ctls3 from 700 and add cooling setpoints#611
Open
Damecek wants to merge 6 commits into
Open
[codex] vaillant: generate ctls3 from 700 and add cooling setpoints#611Damecek wants to merge 6 commits into
Damecek wants to merge 6 commits into
Conversation
added 6 commits
May 26, 2026 23:51
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
This adds a
15.ctls3alias to the 700 controller definition and fills in the missing zone cooling setpoint registers in15.700.tsp.Specifically:
src/vaillant/15.ctls3.tspas a symlink to15.700.tspZ1/Z2/Z3CoolingTempDesiredon offset0x15Z1/Z2/Z3CoolingManualTempon offset0x23Why
A Vaillant Genia Air split installation with a scanned
CTLS3controller was usingvaillant/15.ctls3.csv, but the active cooling target changed in the UI without any matching attribute in the availablectls3definitions.Runtime verification on the target system showed that the controller exposes:
Z2CoolingTempDesiredat020003011500Z2CoolingManualTempat020003012300Those attributes were missing from the generated
ctls3config, while the rest of the observed CTLS3 layout matched the 700-style room controller model:Z2RoomZoneMapping = VRC700Z2OpMode = off/auto/day/nightHc1CircuitType = mixerUser impact
After publishing this, a generated
vaillant/15.ctls3.csvcan expose the cooling setpoints that are actually used by CTLS3-backed systems.Expected MQTT topics include:
GeniaAir-split/ctls3/Z2CoolingTempDesiredGeniaAir-split/ctls3/Z2CoolingManualTempValidation
Checks run:
npm run compile-ennpm run lintRuntime verification on the real CTLS3 setup was done with
ebusctlagainst a temporaryebusdinstance using the updated generated config:Z2CoolingTempDesired = 18.5Z2CoolingManualTemp = 18.5Z2CoolingTemp = 19Z2RoomZoneMapping = VRC700This confirms that the newly defined attributes map to the active cooling target, while the legacy
Z2CoolingTempremains a different setpoint.