homebridge-symo-cmd
v0.0.5
Published
Quick and easy way to get Fronius Symo reading to homebridge.
Downloads
7
Readme
homebridge-symo-cmd
homebridge-plugin for a quick and easy way to get readings from a Fronius Symo
Inspired by homebridge-temperature-cmd
Installation
- Install homebridge using: sudo npm install -g homebridge
- Install this plugin using: sudo npm install -g homebridge-symo-cmd
- Make sure that curl and jq are istalled.
- Update your configuration file. See sample-config.json in this repository for a sample.
Configuration
You can add more accessories of SymoCMD in the config.json for homebridge just copy the first accesory and rename it eg. if you want Year Total (E_Year), Day Total (E_Day) and Current Watts (E_PV)
"accessories": [
{
"accessory": "SymoCMD",
"name": "Current kWh",
"command": "curl -s http://192.168.x.x/solar_api/v1/GetPowerFlowRealtimeData.fcgi | jq '.Body.Data.Site.E_PV'"
},
{
"accessory": "SymoCMD",
"name": "Year total",
"command": "curl -s http://192.168.x.x/solar_api/v1/GetPowerFlowRealtimeData.fcgi | jq '.Body.Data.Site.E_Year'"
}
]