Fronius API ReadOut
Based on homebridge-fronius-inverter by Stog
- Install homebridge using: sudo npm install -g homebridge
- Install this plugin using: sudo npm install -g homebridge-fronius
- Update your configuration file using the example below.
Add a new accessory for "FroniusPV" with a name for the accessory and the inverts IP Address as per the example below.
The following inverter data can be returned :
- P_PV - Live energy generation from the solar array
- P_Load - Live energy consumption through the inverter
- P_Grid - Live energy consumption from the grid
"accessories": [
{
"accessory": "FroniusPV",
"name": "Generation",
"ip": "xxx.xxx.xxx.xxx",
"inverter_data": "P_PV"
},
{
"accessory": "FroniusPV",
"name": "Consumption",
"ip": "xxx.xxx.xxx.xxx",
"inverter_data": "P_Load"
}
]