Get model and status data from Samil Power inverters over the network.
- SolarRiver TL
- SolarRiver TL-D
- SolarLake TL
If you have a SolarLake TL-PM series inverter, check out this fork! -> semonet/solar
If you just need PVOutput.org uploading, you can also try the old version.
- View inverter data
- Upload to PVOutput.org
- Publish to MQTT broker
- Python 3
- Inverter needs to be in the same network
$ sudo apt install python3-pip
$ pip3 install --user samil
After installing, invoke samil --help for usage info.
If the samil command can't be found, first try to relogin.
If that doesn't help you need to change the PATH variable
with the following command and relogin to apply the change.
$ echo 'PATH="$HOME/.local/bin:$PATH"' >> ~/.profile
$ pip install samil
The command samil monitor will search for an inverter in the network and print model and status info.
It will connect to 1 inverter and print status data every 5 seconds.
See samil monitor --help for additional options.
The command samil mqtt connects to one or more inverters and sends status
messages to an MQTT broker continuously. These messages include inverter data
like input power, output power, energy and temperature.
Example: samil mqtt -h 192.168.1.2 -p 1883 --username user --password pw --inverters 2 --interval 10.
This command connects to the MQTT broker at address 192.168.1.2, and
authenticates with the given username user and password pw. It will
connect to 2 inverters in the network and send an MQTT message continuously every 10 seconds.
For full usage info, run samil mqtt --help.
To run this command at startup, see below.
Todo
Todo
Here are instructions for setting up the MQTT or PVOutput command to run at startup, by creating a SystemD service.
Source: StackExchange. Tested on Raspberry Pi OS Lite version May 2020.
First, create a new service:
$ sudo systemctl edit --force --full samil.service
In the empty file that opened, insert the following statements, adjust as necessary, save and close.
[Unit]
Description=Samil
After=multi-user.target
[Service]
# Adjust the command to your needs! Keep the path as is unless you installed to somewhere else.
ExecStart=/home/pi/.local/bin/samil mqtt --host 192.168.1.2
# Adjust if you have a different user account
User=pi
Group=pi
# Automatically restart on crashes after 30 seconds
Restart=on-failure
RestartSec=30
[Install]
WantedBy=multi-user.target
Enable and start the service:
$ sudo systemctl enable --now samil.service
Check if the service has successfully started:
$ sudo systemctl status samil.service
If you want to stop the script, run:
$ sudo systemctl stop samil.service
If you want to disable the script from starting on boot:
$ sudo systemctl disable samil.service
The protocol used by these inverters is described here.
The following units are used for the status values:
- Voltage in volts
- Current in amperes
- Energy in kilowatt hours
- Power in watts
- Temperature in degrees Celcius
- Operating time in hours
This project was originally a fork of zombiekipling/solriv but is now completely rewritten to implement new requirements.
You can use this project as a library.
For documentation you will need to read through the source code.
To get started I recommend to read the monitor function in samil.cli.
Development installation:
pip install -e .
pip install -r dev-requirements.txt
Lint code: flake8
Run testcases: python -m unittest
MIT