ulic75 / power-flow-card

A power distribution card inspired by the official Energy Distribution card for Home Assistant
158 stars 27 forks source link

combine two solar system #149

Open GRV0423 opened 1 year ago

GRV0423 commented 1 year ago

is there a possibility that can be add two battery, and two solar output?

daath commented 1 year ago

Why not just do it yourself and use a template? E.g.

- sensor:
    - name: "Plant Generation - Today"
      state: "{{ states('sensor.inverter1_energy_today') | float(0) + states('sensor.inverter2_energy_today') | float(0) }}"
      unit_of_measurement: 'kWh'