Easy way of reading fronius energy values directly from solar.web in nodejs
npm install solarweb --save
var solarweb = require('solarweb');
//bool
solarweb.login('username', 'password', rememberme, function callback(success){
// ... do stuff
});
var date = {
year:2017,
month:8,
day:8
};
solarweb.getEnergyChartByDay('pvSysId', date, function callback(response){
// ... do stuff
});
check index.js for an example usage!
Contribution welcomed :)