Skip to content
Discussion options

You must be logged in to vote

There is a sensor in the integration that shows the overall house power demand (sigen_plant_consumed_power). However I also wanted to know how this consumed power was split across the individual phases and could not find any sensor for this. So I added the following to the sensor section of my templates.yaml file.

    - name: "My House Power Demand-Phase A"
      unique_id: my_house_power_demand_phase_a
      unit_of_measurement: "kW"
      state: "{{ ((states('sensor.sigen_plant_phase_a_active_power_2') | float(0)) + (states('sensor.sigen_plant_grid_phase_a_active_power') | float(0))) | round(3) }}"
      
    - name: "My House Power Demand-Phase B"
      unique_id: my_house_power_demand…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by TypQxQ
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants