solariot
Leverage your IoT enabled Solar PV Inverter to stream your solar energy usage data to a real time dashboard.
https://github.com/meltaxa/solariot
Category: Renewable Energy
Sub Category: Photovoltaics and Solar Energy
Keywords
dashboard dweet freeboard influxdb iot modbus-sungrow pvoutput solar-energy sungrow-inverter telemetry
Last synced: about 6 hours ago
JSON representation
Repository metadata
Leverage your IoT enabled Solar PV Inverter to stream your solar energy usage data to a real time dashboard.
- Host: GitHub
- URL: https://github.com/meltaxa/solariot
- Owner: meltaxa
- License: mit
- Created: 2017-09-15T12:26:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-24T23:06:57.000Z (11 months ago)
- Last Synced: 2025-04-10T04:39:26.090Z (21 days ago)
- Topics: dashboard, dweet, freeboard, influxdb, iot, modbus-sungrow, pvoutput, solar-energy, sungrow-inverter, telemetry
- Language: Python
- Homepage: https://solariot.live
- Size: 5.17 MB
- Stars: 215
- Watchers: 18
- Forks: 73
- Open Issues: 16
- Releases: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
README.md
Solariot
Leverage your IoT enabled Solar PV Inverter to stream your solar energy usage
data to a real time dashboard.
Solariot will connect directly to your Inverter using Modbus TCP.
Currently, Solariot is able to talk to a SMA Sunny Boy and Sungrow SH5K & SG5KD inverters.
Solariot is designed to allow any Modbus TCP enabled inverter to be queried using a Modbus register map.
Data is collected and can be streamed to destinations like dweet.io, MQTT, InfluxDB or PVOutput.
To visualise the telemetry, use a dashboard such as Grafana. For example, this is Meltaxa's Grafana dashboard on
solariot.live:
Pre-requisites
-
The Inverter must be accessible on the network using TCP.
-
This Python script should work on most Inverters that talk Modbus TCP. You can
customise your own modbus register file. -
Run on Python 3.5+.
Installation
-
Download or clone this repository to your local workstation.
git clone https://github.com/meltaxa/solariot.git cd solariot
-
Install the required libraries.
pip install --upgrade -r requirements.txt
-
Update the config.py with your values, such as the Inverter's IP address,
port, inverter model (which corresponds to the modbus register file) and the
register addresses Solariot should scan from. Enable optional support for MQTT,
PVOutput, InfluxDB and more. -
Run the solariot.py script.
./solariot.py
- Command line options:
-c Python module to load as our config. Default is config.py. -v Level of verbosity 0=ERROR 1=INFO 2=DEBUG. --one-shot Run Solariot just once then exit.
Docker
-
Create a directory for the config file [config.py].
-
Create a config.py (see config-example.py) and place it in the config directory.
-
Run the Docker image with the volume switch to mount your config directory as /config in the image
docker run -v <localpath>:/config meltaxa/solariot
Note that the container runs as UID/GID 2000, so mounted config files will need to be readable. E.G.
chgrp 2000 $FILE # Set group of file to 2000
chown g+r $FILE # Allow group 2000 to read file
Next Steps
Now that you are collecting the inverter's data, you'll want to ultimately
display it in a dashboard as seen above.
There are many methods to stream the data. Here are a few options, which
can be enabled in Solariot.
Dweet.io and Freeboard
This is the quickest method and is a good place to start.
Metrics are streamed to dweet.io a free IoT messaging service. No sign up is
required. All you need to do is create a unique identifier by updating the
dweepy_uuid value in the config.py file.
Data can then be visualised using a free low-cost dashboard service from
Freeboard. You'll need to create your own dashboard,
using dweet.io as your data source.
MQTT Support
This is a good way to push data to MQTT topics that you might subscribe various tools
such as Node-Red or Home Assistant to. Running your own MQTT server will mean you can
also retrieve these values when your internet is offline.
All you need to do is to set the mqtt_server
, mqtt_port
, mqtt_username
,
mqtt_password
and mqtt_topic
values in config.py
file and you'll be up
and running.
InfluxDB and Grafana
Use a time series database such as
InfluxDB to store the inverter data as
it streams in. You'll need to install this on your own server.
To display the data in real time dashboard, you can use
Grafana to pull the metrics from InfluxDB. You can
either install your own Grafana server or use their free
Grafana hosted solution.
A json export of solarspy.live Grafana dashboard is available under the grafana folder.
The file will require editing to match your InfluxDb settings.
Prometheus and Grafana
Prometheus can be enabled in config.py by setting prometheus
to true. the data will then be exported on the port specified by prometheus_port
(defaults to 8000).
you can configure Prometheus to scrape this by adding a rule like this to your prometheus.yml
scrape_configs:
- job_name: 'solariot'
scrape_interval: 30s
static_configs:
- targets: ['localhost:8000']
alternatively if your using Kubernetes you can use this helm chart
PVOutput.org
We offer direct integration to publishing metrics to the 'Add Status' API endpoint of PVOutput.
Supported values are v1
through to v6
and an assumption that v1
and v3
are values are incremental and reset every day.
All you need to do is set the pvoutput_api
, pvoutput_sid
and pvoutput_rate_limit
values in config.py
file and
you'll be publishing in no time!
Integration with PVOutput.org and Grafana
If you are using Grafana as your dashboard, a neat little trick is to then
incorporate your Grafana panels with your PVOutput as system photos. From your
PV Ladder page, click on your photos to view the real time Grafana images:
-
Obtain your Grafana panel direct link, see their documentation: http://docs.grafana.org/reference/sharing/#direct-link-rendered-image.
-
In your PVOutput "Edit System" page, add your Grafana panel link in the
"Image Link" field. Append "&png" to the link. Note, if the URL is longer than
100 characters, use a URL shortener service instead (such as https://goo.gl).
Don't forget to append the "&png" string to your URL. -
Now go to your system in the PV Ladder page and click on the photos.
💡 Tip: You can add any URL image, such as the latest weather radar image
😉
Contributions
If you have created a modbus register map for an inverter, please submit your
file as a pull request for Solariot inclusion.
Acknowledgements
- michael-robbins for Docker support, modbus contrib and other improvements.
- rpvelloso for the SungrowModbusTcpClient class that enables decryption of comms.
- shannonpasto for the Sungrow SG3KD modbus map.
- ShogunQld for the SMA Sunnuyboy modbus map.
- zyrorl for MQTT support contrib.
Owner metadata
- Name: Dennis Mellican
- Login: meltaxa
- Email:
- Kind: user
- Description: DevOps Consultant
- Website: https://mellican.com/
- Location: Brisbane, Australia
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/19274980?u=a2a36a5e7fa9172624c9411e20428ea9a0f15d45&v=4
- Repositories: 19
- Last ynced at: 2025-04-24T15:19:37.966Z
- Profile URL: https://github.com/meltaxa
GitHub Events
Total
- Watch event: 10
- Issue comment event: 2
- Fork event: 6
Last Year
- Watch event: 10
- Issue comment event: 2
- Fork event: 6
Committers metadata
Last synced: 9 days ago
Total Commits: 125
Total Committers: 15
Avg Commits per committer: 8.333
Development Distribution Score (DDS): 0.632
Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0
Name | Commits | |
---|---|---|
Dennis Mellican | m****a@g****m | 46 |
Michael Robbins | m****s@x****m | 25 |
vagrant | v****t@v****m | 14 |
Ubuntu | u****u@i****l | 12 |
slackerlinux85 | 8****5 | 7 |
Dean Pemberton | d****n@c****z | 4 |
Nathan Pickworth | n****n@m****e | 3 |
Ben Reedy | b****8@b****m | 3 |
rark-ha | 6****a | 2 |
bohdan-s | b****s | 2 |
ShaneH | s****y@g****m | 2 |
Abilio Henrique | a****n@z****m | 2 |
Antony Puckey | a****y@r****m | 1 |
scottah | s****h@g****m | 1 |
chainsawbike | c****e@g****m | 1 |
Committer domains:
- rawideas.com: 1
- zyrorl.com: 1
- breed808.com: 1
- mors.me: 1
- cassini.nz: 1
- ip-172-26-15-19.us-west-2.compute.internal: 1
- vagrant.vm: 1
- xero.com: 1
Issue and Pull Request metadata
Last synced: 1 day ago
Total issues: 47
Total pull requests: 39
Average time to close issues: 2 months
Average time to close pull requests: about 1 month
Total issue authors: 37
Total pull request authors: 15
Average comments per issue: 4.72
Average comments per pull request: 1.26
Merged pull request: 24
Bot issues: 0
Bot pull requests: 11
Past year issues: 1
Past year pull requests: 1
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 1
Past year pull request authors: 1
Past year average comments per issue: 2.0
Past year average comments per pull request: 0.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- meltaxa (4)
- shannondpasto (4)
- michael-robbins (3)
- bdog720 (2)
- rark-ha (2)
- CarsonRedeye (1)
- crazycusti (1)
- satyr-software (1)
- eimann (1)
- flare04 (1)
- shannonpasto (1)
- Flynsarmy (1)
- knights1 (1)
- MeldrumIO (1)
- brettbeeson (1)
Top Pull Request Authors
- dependabot[bot] (11)
- michael-robbins (9)
- breed808 (3)
- slackerlinux85 (3)
- nmors (2)
- bohdan-s (2)
- andycapx (1)
- ShogunQld (1)
- xrobau (1)
- zyrorl (1)
- chainsawbike (1)
- scottah (1)
- apuckey (1)
- rark-ha (1)
- deanpemberton (1)
Top Issue Labels
- enhancement (5)
- help wanted (1)
- bug (1)
Top Pull Request Labels
- dependencies (11)
- enhancement (1)
Dependencies
- actions/checkout v1 composite
- crazy-max/ghaction-docker-buildx v1 composite
- python 3.9-alpine build
- SungrowModbusTcpClient >=0.1.5
- SungrowModbusWebClient >=0.2.4
- dweepy >=0.3.0
- influxdb >=5.3.1
- paho-mqtt >=1.5.1
- prometheus-client >=0.9
- pymodbus ==2.5.3
Score: 8.150467911624004