{"id":20488155,"url":"https://github.com/mwittig/node-fronius-solar","last_synced_at":"2025-06-19T22:36:16.513Z","repository":{"id":31607852,"uuid":"35172808","full_name":"mwittig/node-fronius-solar","owner":"mwittig","description":"Access PV live logs using the Fronius Solar API","archived":false,"fork":false,"pushed_at":"2023-04-16T03:34:17.000Z","size":34,"stargazers_count":42,"open_issues_count":3,"forks_count":8,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-27T06:51:21.589Z","etag":null,"topics":["fronius","fronius-solar-api","photovoltaic","power-converters","pv-systems"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mwittig.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-05-06T17:22:54.000Z","updated_at":"2024-10-05T06:34:35.000Z","dependencies_parsed_at":"2023-09-24T12:42:37.979Z","dependency_job_id":null,"html_url":"https://github.com/mwittig/node-fronius-solar","commit_stats":{"total_commits":37,"total_committers":5,"mean_commits":7.4,"dds":0.2702702702702703,"last_synced_commit":"de2b0560b4eede60d7db3dfcf2cab4f15629b6fd"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fnode-fronius-solar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fnode-fronius-solar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fnode-fronius-solar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fnode-fronius-solar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mwittig","download_url":"https://codeload.github.com/mwittig/node-fronius-solar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248647941,"owners_count":21139198,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fronius","fronius-solar-api","photovoltaic","power-converters","pv-systems"],"created_at":"2024-11-15T16:55:38.928Z","updated_at":"2025-04-13T16:01:32.658Z","avatar_url":"https://github.com/mwittig.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# node-fronius-solar\n\n[![Greenkeeper badge](https://badges.greenkeeper.io/mwittig/node-fronius-solar.svg)](https://greenkeeper.io/) [![Build Status](https://travis-ci.org/mwittig/node-fronius-solar.svg?branch=master)](https://travis-ci.org/mwittig/node-fronius-solar)\n\nAccess PV live logs using the Fronius Solar API V0 and V1.\n\n## Usage Example\n\n    var fronius = require('node-fronius-solar'),\n        util = require('util'),\n        options = {\n            host: 'localhost',\n            port: 8001,\n            deviceId: 1\n            version: 0\n        },\n        x = Date.now();\n    \n    // This is the Solar API V0 call which should work with Fronius Datalogger Web v2.0.4.1 (and higher) and\n    // Fronius Data Manager v3.0.3-1 (and higher)\n    fronius.GetInverterRealtimeData(options).then(function (json) {\n        console.log(util.inspect(json, { depth: 4, colors : true }));\n        console.log(Date.now() - x, \"milliseconds elapsed\")\n    }).catch(function(e) {console.log(e)});\n    \n    // This is the Solar API V1\n    options.version = 1;\n    fronius.GetInverterRealtimeData(options).then(function (json) {\n        console.log(util.inspect(json, { depth: 4, colors : true }));\n        console.log(Date.now() - x, \"milliseconds elapsed\")\n    }).catch(function(e) {console.log(e)});\n    \n    // GetComponentsData is provided to use an undocumented API service of the Fronius Data Manager\n    // provided with the Symo inverters. See https://forum.fhem.de/index.php/topic,24614.msg214011.html#msg214011\n    // In contrast to the regular Solar API Calls which do not require authentication, you may need to provide\n    // username and password properties to the options dictionary (if authentication has been enabled \n    // for Fronius Data Manager.\n    fronius.GetComponentsData(options).then(function (json) {\n        console.log(util.inspect(json, { depth: 4, colors : true }));\n        console.log(Date.now() - x, \"milliseconds elapsed\")\n    }).catch(function(e) {console.log(e)});\n    \n    // This is a Solar API V1 call which should work with Fronius Data Manager v3.4.2-1 (and higher)\n    fronius.GetPowerFlowRealtimeDataData(options).then(function (json) {\n        console.log(util.inspect(json, { depth: 4, colors : true }));\n        console.log(Date.now() - x, \"milliseconds elapsed\")\n    }).catch(function(e) {console.log(e)});\n\n## Release History\n\nSee [Release History](https://github.com/mwittig/node-fronius-solar/blob/master/HISTORY.md).\n\n## License\n\nCopyright (c) 2015-2019, Marcus Wittig and contributors. All rights reserved.\n\n[MIT License](https://github.com/mwittig/node-fronius-solar/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwittig%2Fnode-fronius-solar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmwittig%2Fnode-fronius-solar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwittig%2Fnode-fronius-solar/lists"}