node-fronius-solar icon indicating copy to clipboard operation
node-fronius-solar copied to clipboard

2020 example.js

Open drnic opened this issue 4 years ago • 0 comments

I had two fronius inverters installed recently and I got example.js working with the following config:

var fronius = require('./index'),
    util = require('util'),
    options = {
        username: "admin",
        password: "admin",
        host: '192.168.86.47',
        port: 80,
        deviceId: 1,
        version: 1
    },

I discovered the host IP from Google Wifi app -- annoyingly the fronius inverter/datamapper does not give itself a name so it appears as "Unnamed device". Fortunately, it was one of very few unnamed devices and I found it quickly.

I needed to set version: 1.

The primary inverter listens on port: 80.

I have two inverters that are connected so I can run the node example.js with deviceId: 1 or deviceId: 2

drnic avatar May 22 '20 22:05 drnic