You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
could we get another sensor built into the integration that would add all of the values from all of the optimizers?
for me personally - my solar provider doesn't want to add me as a site admin so i have no way of getting data about my system into HA without web scraping like what this integration does - which is awesome by the way.
i'd just like to get an additional sensor that adds all power or power and voltages (though i'm not sure that info would be useful)
i made a template as well that should work by adding all of the entities together - i'm not sure if this would help
solarpowertotal:
value_template: "{{ states.sensor | selectattr('object_id', 'search', '^power_1_') | map(attribute='state') | select('is_number') | map('float') | sum }}"
The text was updated successfully, but these errors were encountered:
Could you not do this with the other SolarEdge integration to the inverter rather than to the optimizers?
I use that for the totals and this for the individuals.
could we get another sensor built into the integration that would add all of the values from all of the optimizers?
for me personally - my solar provider doesn't want to add me as a site admin so i have no way of getting data about my system into HA without web scraping like what this integration does - which is awesome by the way.
i'd just like to get an additional sensor that adds all power or power and voltages (though i'm not sure that info would be useful)
i made a template as well that should work by adding all of the entities together - i'm not sure if this would help
solarpowertotal:
value_template: "{{ states.sensor | selectattr('object_id', 'search', '^power_1_') | map(attribute='state') | select('is_number') | map('float') | sum }}"
The text was updated successfully, but these errors were encountered: