Fix Delta 2 AC Ports switch stuck unavailable while AC output is off#356
Merged
rabits merged 1 commit intoMay 30, 2026
Merged
Conversation
rabits
pushed a commit
that referenced
this pull request
May 31, 2026
…#361) This is a followup of #356 - in there, we only updated switch, but all other fields are also unavailable so this PR adds a functionality that allows setting defaults for all fields. This also addresses a comment in #351 (comment) that reported this issue happens for River 2. This adds a small, generic mechanism rather than patching one field. A field can declare its off value with `Field.default_when_missing(value)`. When a device has any such field, `DeviceBase` schedules a one-shot fallback after authentication (`MISSING_DEFAULT_GRACE = 10s`): for each marked field that is still unset once the grace period elapses, it applies the declared value through `notify_field`. A real message arriving at any point - before or after - still wins. The field iteration and a `TypeIs` guard live on `UpdatableProps` (`is_props` / `fields_with_missing_default`), so `DeviceBase` never reaches into props internals. Config / spec fields (configured charge speed, rated power, etc.) are deliberately left unmarked - an empty inverter reading should not clobber a setpoint to `0`, so those stay unavailable until the device actually reports them.
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.
The inverter heartbeat is the only message that carries
cfg_ac_enabled(which drives theac_portsfield), and the firmware stops sending it entirely while AC output is off. After a fresh connect with AC off,ac_portsis therefore never populated, the switch reports unavailable (its value staysNone), and HA blocksturn_onon unavailable entities - so the AC ports can't be enabled from HA at all until the inverter is turned on physically or via the app.Delta2Basenow arms a 10 second fallback when the device authenticates: if no inverter heartbeat arrives within the window,ac_portsfalls back to off so the switch becomes controllable. It is deliberately left unavailable during the grace period instead of defaulting immediately, so we never assume off (and send anoncommand) for a port that is actually on but slow to report. A real heartbeat at any point still overrides the fallback.Resolves #351, resolves #334