Skip to content

GoodWe inverter readout over UDP to PVOutput.org

Notifications You must be signed in to change notification settings

Scampi-ml/goodwe2pvoutput

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

goodwe2pvoutput

This script pulls data directly from the GoodWe inverter and sends it directly to PVOutput without using the Sems portal. Please note that this script comes from a fork, i only modified it and made a better guide based on this old script.

The OS

For this guide i will be using a Raspberry Pi 3 Model B V1.2. Others may work too. Running the Raspberry Pi OS Lite (32-bit) without deskstop using the Raspberry Pi Imager More info & how to

Run this before you do anything, just to be sure its all up-to-date:

sudo apt update && sudo apt full-upgrade -y && sudo apt autoremove -y && sudo apt-get autoclean -y

This may take a while, please be patient! and do a reboot using:

sudo reboot now

Checking Requirements

Python should be already installed by default on a raspberry Pi

PIP can be quickly installed by using the following command:

sudo apt install python3-pip -y

Git can be quickly installed by using the following command:

sudo apt install git -y

PVoutput.org

You will need a (free) account at PVOutput. You will need a system to send the data to. You can create a system here or login to your account. On your account scroll down, you will find the API section, set API Access to "Enabled". Note the API key you will need it later.

Scroll down, you will see "Registered Systems", please note the "System Id" that you will be useing. Example: 53518 Make sure the status is set to "A" (Active).

Installing

Login to your Raspberry PI using Putty. I am using the default login for this example: Iam sure you will be able to google info about that topic.

We need data from the inveter and NOT from the sems website/api since it is ..... slow, buggy and unreliable. Good for us someone made a script to pull the data using your own local network. Lets get it:

sudo pip install goodwe

Make sure you are in your home directory, if not run this:

cd /home/pi

Clone the files:

sudo git clone https://github.com/Janvier123/goodwe2pvoutput

Editing the script

Go into the folder:

cd /home/pi/goodwe2pvoutput

Lets edit the file:

sudo nano inverter_read.py

Look for:

GW_IP_ADDRESS = "192.168.0.0"

Change to you own IP:

NOTE: You can use advanced ip scanner to scan your network and find the IP of your inverter. NOTE: My inverter came with a website, so entering the ip gave me a website with some config data

Look for:

GW_FAMILY = "DT"

Options: ET, EH, ES, EM, DT, NS, XS, BP or None to detect inverter family automatically

On you inverter there should be a sticker, mine said: Model: GW5048D-ES. Please note the ES, however in my SN there is also an "ES", so ive changed the GW_FAMILY to ES

Change to your whatever you may have.

Look for:

PVO_SYSTEMID    = "12345"

Change to your own system ID from PVOutput.

Look for:

PVO_APIKEY      = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Change to your own API key from PVOutput, see above; Press CTRL + O, press ENTER, CTRL + X

OPTIONAL: You may want to tweak your script and send more data to PVOutput, for example if you are a donator on PVOutput. You can send extended parameters: v7, v8, v9, v10, v11 and v12 For example, if you own a battery system you can send the batterly level, voltage, ... or whatever you want to keep record of. More info

Systemd service (Auto start)

So we want to run this as a service. As a bonus this will run if you unplug the power or restart the PI.

Open putty, login and type or copy the following:

sudo nano /etc/systemd/system/goodwe2pvoutput.service

Now copy the following:

[Unit]
Description=Read GoodWe inverter (UDP) and publish to PVOutput.org

[Service]
WorkingDirectory=/home/pi/goodwe2pvoutput
ExecStart=/usr/bin/python3 /home/pi/goodwe2pvoutput/inverter.py
Restart=always
RestartSec=300
User=goodwe2pvoutput

[Install]
WantedBy=multi-user.target

Please note the "300", this is the time (in seconds) before sending the next data. PVoutput api has the following options:

  5 minutes (Default) (or 300 sec)
  10 minutes (or 600 sec)
  15 minutes (or 900 sec)

I highly suggest leaving it at 300 for the best results. Press CTRL + O, press ENTER, CTRL + X

Now run the following, line by line:

sudo useradd -m goodwe2pvoutput
sudo systemctl enable goodwe2pvoutput
sudo systemctl start goodwe2pvoutput

Thats it!

You can check the status

sudo journalctl -u goodwe2pvoutput -f

You should be able to see some text. Any error(s) should popup.

If all looks good, you can unplug it and place it where you want. You can even setup a WIFI connection and set it near your inverter.

Once you re-connect power it should start running again, it can be that it does not output anything since there is a 5-7 min delay.

Check the output on your PVOutput website or SSH into the device using the command:

sudo journalctl -u goodwe2pvoutput -f

OpenWeatherMap

Create a account at OpenWeatherMap Go to API Keys and look for Create key enter a name, for example: PVoutput A new key will be generated for you, copy the API key.

Adding Temperature

The old gw2pvo script required that you uploaded the temperature based on your location, using netatmo or Dark Sky. For that we use the Automatic Uploads from PVOutput itself.

NOTE: DO NOT upload the temperature from the inverter. This is the temperature from the inverter itself, but PVoutput expects outside temperature.

Edit your system at the PVOutput Website, scroll down and look for Automatic Uploads You can find your systems at bottom or your account.

For this example i used the following values:

  • Primary Device: Weather
  • Poll Interval: 5 minutes
  • Shift Time: None
  • Weather Device: OpenWeatherMap
  • API Key: < the key you copied >
  • Location fill in your Latitude and longitude or press Retrive
  • Main Temperature: Enabled

Scroll down and hit Save

Final Notes

I am in NO WAY a Python programmer. However i do try my best to make things work, altho it may not be the best way to do it. Feel free to open an ISSUE to give suggestions OR send me a pull request. Forgive me for the bad english, Dutch is my main language ;)

Credits

https://github.com/ASlatius/gw2mqtt-pvo

https://github.com/marcelblijleven/goodwe

https://github.com/markruys/gw2pvo

PVoutput.org Community & API

About

GoodWe inverter readout over UDP to PVOutput.org

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%