
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
growatt-data-parser
Advanced tools
Parses growatt solar inverter data and returns the data in a structured readable json object
Parses growatt solar inverter data and returns the data in a structured readable json object.
Tested with Growatt inverter GT0012F111 with WiFi module
npm install growatt-data-parser
var growattDataParser = require('growatt-data-parser');
var data = fs.readFileSync('test/testcapture-growatt-GT0012F111-01.cap');
var result = growattDataParser(data);
// simple server
var net = require('net');
var growattDataParser = require('growatt-data-parser');
net.createServer(function (socket) {
socket.on('data', function(data) {
const solardata = growattDataParser(data);
console.log(solardata);
});
}).listen('8000');
{
"wifimoduleserial":"AH55321111",
"inverterserial":"8F05491111",
"inverterstatus":1,
"ppv":745.3,
"vpv1":143.2,
"ipv1":2.5,
"ppv1":370.8,
"vpv2":141.9,
"ipv2":2.6,
"ppv2":374.5,
"pac":730.4,
"fac":50,
"vac1":229.1,
"iac1":3.1,
"pac1":731.9,
"vac2":0,
"iac2":0,
"pac2":0,
"vac3":0,
"iac3":0,
"pac3":0,
"etoday":11.7,
"etotal":307.1,
"htotal":435.04625,
"temperature":41.2,
"isofaultvalue":0,
"gfcifaultvalue":0,
"dcifaultvalue":0,
"vpvfaultvalue":0,
"vacfaultvalue":0,
"facfaultvalue":0,
"temperaturefaultvalue":0,
"faultcode":0,
"ipmtemp":43.4,
"pbusvolt":358.5,
"nbusvolt":0,
"checkstep":"0000",
"ipf":45,
"resetchk":"0059",
"deratingmode":"000000000000",
"epv1today":5.7,
"epv1total":149,
"epv2today":5.6,
"epv2total":149.7,
"epvtotal":298.7,
"rac":0,
"eractoday":0,
"eractotal":0,
"warningcode":"0000",
"warningvalue":"0000"
}
npm test
FAQs
Parses growatt solar inverter data and returns the data in a structured readable json object
We found that growatt-data-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.