Sample Sensors for better Solar Monitoring #218
Replies: 2 comments 6 replies
-
Yes this code is actually for a single inverter (with 2 strings PV1 & PV2) which is what most users have. For your 3 inverters you would need to replicate this but with the different entity names from each inverter. Find the PV1 name for each of your inverters (it will be something like sensor.xxxxxxx_pv1_power ) where xxxxxxx is each inverter name, repeat that for PV2 then duplicate the code in your configuration.yaml for each inverter As an example - for inverter names of 'inverter1', 'inverter2', 'inverter3' You would have sensor names of:- sensor.inverter1_pv2_power So then this code would become -
|
Beta Was this translation helpful? Give feedback.
-
Hi, So for Inverter1 Name it seems to be sensor.h3_10_0_inverter still searching for PV1 and PV2 String Names. Update: found them Both H3 10 Inverters sensor.h3_10_0_pv1_power sensor.h3_10_0_pv2_power sensor.h3_10_0_pv3_power sensor.h3_10_0_pv4_power I found until PV Power 4 does that mean they both have 2 strings per each inverter? the H3 8 Inverter sensor.h3_8_0_pv1_power I found for the H3 8 Inverter until PV4 does that mean it has 4 strings? Again Thank you. |
Beta Was this translation helpful? Give feedback.
-
Don't I need something in this code added if I have 3 inverters?
For me as a beginner the code looks like it's for 2 inverters.
``
Setup Better Solar Tracking Sensors that resolve negative solar tracking
source: sensor.foxess_pv1_power
name: pv1_sum
unit_time: h
round: 2
source: sensor.foxess_pv2_power
name: pv2_sum
unit_time: h
round: 2
Setup Daily and real-time solar trackers that resolve the negative solar tracking
utility_meter:
daily_pv1_sum:
source: sensor.pv1_sum
cycle: daily
Setup Daily and real-time solar trackers that resolve the negative solar tracking
template:
name: "Solar Power Daily"
unit_of_measurement: "kWh"
state: "{{ states('sensor.daily_pv1_sum') | float + states('sensor.daily_pv2_sum') | float }}"
name: "Solar Power Now"
unit_of_measurement: "kW"
state: "{{ states('sensor.foxess_pv1_power') | float + states('sensor.foxess_pv2_power') | float }}"
``
Beta Was this translation helpful? Give feedback.
All reactions