Missing total PV power sensor? #128
andrewmooreio
started this conversation in
General
Replies: 1 comment 7 replies
-
Fair. There's rpower (Inverter Power), but that includes battery output. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi. I've just switched from the StealthChestnut integration and have noticed there is no total power sensor for PV output. e.g. current total solar generation PV1 + PV2 in W.
I've created a template sensor for now
{{ (states('sensor.pv1_power') | float(default=0) + states('sensor.pv2_power') | float(default=0) ) * 1 }}
, just wondering if it's possible to hard code it into the integration, as it's a really useful metric that I'm sure a lot of users would appreciate.There may be other sensors that are provided by templates here, but the total PV power is a particularly useful one.
Cheers.
Beta Was this translation helpful? Give feedback.
All reactions