docs(faq): explain power-flow diagram showing 0W with split import/export sensors#4266
Merged
springfall2008 merged 1 commit intoJul 17, 2026
Conversation
…port sensors grid_power expects a single signed sensor. Some meter/CT-clamp integrations instead expose two separate always-non-negative sensors (one for import, one for export) - if grid_power is pointed at just one of those, it correctly reads 0 during flow in the other direction, which looks like a bug but isn't. Documents the fix (a combining template sensor) alongside the existing "wrong direction" FAQ entry for the same diagram.
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.
Referenced from #4255 - a "power flow diagram shows 0W export" report that turned out to be a config/integration mismatch rather than a bug:
grid_powerexpects a single signed sensor, but the reporter's meter integration exposes two separate always-non-negative sensors (import and export), andgrid_powerwas only able to point at one of them.Adds a FAQ entry alongside the existing "grid power flowing in the wrong direction" one, covering this sibling case and the workaround (a Home Assistant template sensor netting the two into one signed value).