Skip to content

Fronius Power Meter

This power meter is designed to work with Fronius Smart Meter in conjunction with a Fronius Inverter.

Fronius is providing an Open Inteface named Fronius Solar API which is allowing the quiery the inverter and locally get data.

To use this package, add the following lines to your configuration file:

1
2
3
4
packages:
  power_meter:
    url: http://github.com/XavierBerger/ESPHome-Solar-Router/
    file: solar_router/power_meter_fronius.yaml

This package needs to know the IP address of the inverter. This IP address has to be defined by power_meter_ip_address into subtsitution section of your configuration as in example ballow:

1
2
3
4
substitutions:
  # Power meter source -----------------------------------------------------------
  # Define ip address of Fronius inverter
  power_meter_ip_address: "192.168.1.21"

This package is activated/deactivated with a global variable power_meter_activated. This globals is provided by an engine package. If this power meter is use inside a proxy, it is required to add this globals into you configuration yaml as follow:

1
2
3
4
globals:
  - id: power_meter_activated
    type: int
    initial_value: "1"

Network dependency

This power meter require the network to gather information about energy exchanged with the grid.