deye-inverter-mqtt
deye-inverter-mqtt copied to clipboard
Reads Deye solar inverter metrics and posts them over MQTT
Do you find this project useful? Buy me a coffee
Deye solar inverter MQTT bridge
Reads Deye solar inverter metrics using Modbus over TCP and publishes them over MQTT.
Supports single inverter installations, as well as fleet of microinverters.
Supported inverters and metrics
The meaning of certain inverter registers depends on the inverter type. You should choose metric group(s) that are appropriate to your inverter model. If your inverter is not listed below, it may still work with one of the already existing metric groups. Give it a try and experiment. In the worst case it won't work.
When your inverter is not supported, feel free to open an issue in this github project. Maybe, together we will find a way to add the support.
When your inverter turns out to work well with an already exiting metrics group, then please be so kind, and let me know in this issue. This will help in building the list of supported inverters below. Thanks!
The list below is built basing on the reports from the users. Compatiblity is not guaranteed.
Inverter model | Metric groups |
---|---|
Deye SUN-4/5/6/7/8/10/12K-G05-P | string, settings |
Deye SUN300/500G3-US-220/EU-230 | micro, settings_micro |
Deye SUN600/800/1000G3-US-220/EU-230 | micro, settings_micro |
Deye SUN-M60/80/100G3-EU-Q0 | micro, settings |
Deye SUN1300-2000G3-US-220/EU-230 | micro, settings |
Deye SUN-5/6/8/10/12K-SG04LP3 | deye_sg04lp3, deye_sg04lp3_battery, deye_sg04lp3_ups, deye_sg04lp3_timeofuse, deye_sg04lp3_generator, settings |
Deye SUN-5/6K-SG01LP1-US/EU | deye_hybrid, deye_hybrid_battery, deye_hybrid_timeofuse, settings |
Deye SUN-7.6/8K-SG01LP1-US/EU | deye_hybrid, deye_hybrid_battery, deye_hybrid_timeofuse, settings |
Deye SUN-25/30/40/50K-SG01HP3-EU-BM2/3/4 | deye_sg01hp3, deye_sg01hp3_battery, deye_sg01hp3_bms, deye_sg01hp3_ups, settings |
Meter model | Metric groups |
---|---|
IGEN DTSD422-D3 | igen_dtsd422 |
Rebranded models
Inverter model | Metric groups |
---|---|
Bosswerk MI600 | micro |
Fuji Solar FU-SUN-4/5/6/7/8/10/12K-G05 | string |
Additional MQTT topics
Availability topic
Reports deye-inverter-mqtt service status (not the inverter/logger status):
-
online
- when the service is connected to the MQTT broker -
offline
- when the service is disconnected from the MQTT broker
The default topic name is status
and can be changed in the configuration.
Logger status topic
Reports solar inverter's logger connectivity status
-
online
- when the service connect to the logger successfully -
offline
- when the service can't connect to the logger
The default topic name is logger_status
and can be changed in the configuration.
Reading inverter settings
The service can optionally read inverter settings. This feature may be useful when you dynamically modify active power regulation factor. Enable it by adding settings
metric group to DEYE_METRIC_GROUPS
env variable.
Writing inverter settings
It is possible to modify selected inverter settings over MQTT.
Setting | Topic | Unit | Value range | Feature flag |
---|---|---|---|---|
active power regulation | {MQTT_TOPIC_PREFIX}/settings/active_power_regulation/command |
% | 0-120 | DEYE_FEATURE_ACTIVE_POWER_REGULATION |
time of use | {MQTT_TOPIC_PREFIX}/timeofuse/time/(1-6)/command |
time | 0000 - 2359 | DEYE_FEATURE_TIME_OF_USE |
time of use | {MQTT_TOPIC_PREFIX}/timeofuse/power/(1-6)/command |
W | 0 - max power(1) | DEYE_FEATURE_TIME_OF_USE |
time of use | {MQTT_TOPIC_PREFIX}/timeofuse/voltage/(1-6)/command |
V | 0.00 - 63.00 | DEYE_FEATURE_TIME_OF_USE |
time of use | {MQTT_TOPIC_PREFIX}/timeofuse/soc/(1-6)/command |
% | 0 - 100 | DEYE_FEATURE_TIME_OF_USE |
time of use | {MQTT_TOPIC_PREFIX}/timeofuse/enabled/(1-6)/command |
On/Off | 0,1 | DEYE_FEATURE_TIME_OF_USE |
time of use | {MQTT_TOPIC_PREFIX}/timeofuse/control/command |
string | write, reset | DEYE_FEATURE_TIME_OF_USE |
(1) max inverter power in Watts e.g. 8000, 10000 or 12000
Writing Time Of Use configuration
Prerequisites:
- Set
DEYE_FEATURE_TIME_OF_USE
totrue
- Enable time-of-use metric group that's appropriate to your inverter model, e.g.
deye_sg04lp3_timeofuse
Time Of Use configuration is modified using the following workflow:
- The service reads Time Of Use configuration from the inverter and keeps it in the memory. This step happens automatically at each data read from the inverter.
- You send modifications over
{MQTT_TOPIC_PREFIX}/timeofuse/*/*/command
topics as needed. See the table above for more details about used MQTT topics. These changes are not immediately written to the inverter. They are buffered in the service memory instead. - Send
write
command to topic{MQTT_TOPIC_PREFIX}/timeofuse/control/command
. It will build a new Time Of Use configuration by putting your changes on top of the inverter configuration present in the service memory. Next the entire Time Of Use configuration is sent to the inverter. The modifications are cleared, and you can start over sending new modifications. - Alternatively send
reset
command to purge buffered modifications without writing them to the inverter.
Additional features
Monitoring a fleet of microinverters
This feature enables monitoring of N microinverters from a single service instance (docker container), which simplifies the installation and configuration.
It is designed to monitor a fleet of microinverters.
To activate this feature, set DEYE_LOGGER_COUNT
environment variable to the number of loggers you would like to connect to. Next configure each logger by adding a set of environment variables, as follows:
DEYE_LOGGER_{N}_IP_ADDRESS=192.168.XXX.YYY
DEYE_LOGGER_{N}_SERIAL_NUMBER=0123456789
# Optionals
DEYE_LOGGER_{N}_PROTOCOL=at
DEYE_LOGGER_{N}_PORT=48899
DEYE_LOGGER_{N}_MAX_REG_RANGE_LENGTH_PORT=256
Replace {N}
with logger index. All loggers in the range of 1 to DEYE_LOGGER_COUNT
must be configured.
All other configuration options, in particular the metric groups, are shared by all configured loggers. For example, if you set DEYE_FEATURE_SET_TIME=true
, it will activate set-time feature for all configured loggers.
Each logger gets its own MQTT topic prefix {MQTT_TOPIC_PREFIX}/{N}
Additionally, you can enable multi-inverter data aggregation. Set DEYE_FEATURE_MULTI_INVERTER_DATA_AGGREGATOR=true
to compute and report Aggregated daily energy
and Aggregated AC active power
for the entire fleet. See aggregated metrics
Automatically set logger/inverter time
Monitors current logger status and sets the time at the logger/inverter once the connection to it can be established.
This is useful in a setup where the inverter has no access to the public internet, or is cut off from the Solarman cloud services.
This feature is disabled by default and must be activated by setting DEYE_FEATURE_SET_TIME
in the config file.
Custom plugins
This feature allows advanced users to extend the functionality of this project. At the moment the plugins can be used to provide custom event processors. This means, that you can now process the readings as you like. No need to rely on MQTT at all anymore.
How to implement a plugin
- Plugin is a Python file placed in
plugins
directory. The filename must begin withdeye_plugin_
- The plugin must define a
DeyePlugin
class. Seeplugins/deye_plugin_sample.py
for inspiration.
How to start the docker container with custom plugins
Mount your plugins
dir into the container filesystem
--volume ./plugins:/opt/deye_inverter_mqtt/plugins:ro
List of public plugins
- stdout-publisher by @hoegaarden
Installation
The communication with the logger can be performed using either Modbus/TCP or Modbus/AT protocol.
This project has been started with Modbus/TCP protocol support and it's still the default one.
However, logger firmware versions 2.x does not seem to expose Modbus/TCP interface anymore, hence Modbus/AT protocol support has been implemented. Use DEYE_LOGGER_PROTOCOL
environment variable to select
the communication protocol.
Please note, that Modbus/TCP uses tcp/ip, while Modbus/AT uses udp/ip communication.
- Copy
config.env.example
asconfig.env
- Fill in values in
config.env
, see Configuration for more details
Option 1: Using Docker directly
-
Run the container
docker run -d --name deye-mqtt \ --env-file config.env \ --restart unless-stopped \ ghcr.io/kbialek/deye-inverter-mqtt
-
-d
will detach the container, so it will run in the background -
--restart=unless-stopped
will make docker to restart the container on host reboot
-
-
Stop and remove the container
docker stop deye-mqtt docker rm -v deye-mqtt
-
Inspect the logs
docker logs deye-mqtt
Option 2: Using Docker Compose
-
Create or modify your own
docker-compose.yaml
file. Here is a working example -
Run the container
docker compose -f <path-to-docker-compose.yaml> up -d
- replace
<path-to-docker-compose.yaml>
with path to yourdocker-compose.yaml
- replace
-
Stop and remove the container
docker compose -f <path-to-docker-compose.yaml> down -v
Connecting to MQTT Broker over TLS
-
Put certificates and client private key in a folder of your choice. The following files are required.
-
ca.crt
-
client.crt
-
client.key
Check configuration section if you want to use alternative file names.
-
-
Mount certificates folder in a docker container by adding
--volume
option to the command as follows:--volume <certs_folder>:/opt/deye_inverter_mqtt/certs:ro
- replace
<certs_folder>
with the certificates folder location of your choice
- replace
-
Enable TLS in the configuration.
MQTT_TLS_ENABLED=true
-
Start the container
Installation troubleshooting
Docker container fails to start with error message: PermissionError: [Errno 1] Operation not permitted
It can happen on debian buster based linux distributions, including raspbian.
Solution: Install libseccomp2
from the backports
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC 648ACFD622F3D138
echo "deb http://deb.debian.org/debian buster-backports main" | sudo tee -a /etc/apt/sources.list.d/buster-backports.list
sudo apt update
sudo apt install -t buster-backports libseccomp2
Network connectivity issues
These problems typically manifest with timeout errors.
The first thing to check is, if given network address is reachable from within the docker container. In order to do this run the following commands:
- Login to your docker host
- Start the container in shell mode:
docker run --rm -ti --entrypoint /bin/sh ghcr.io/kbialek/deye-inverter-mqtt
- Install
telnet
by runningapk update && apk add busybox-extras
- Check connectivity:
telnet <ip> <port>
- Substitute
<ip>
and<port>
with appropriate values
- Substitute
- You should see either:
-
Connected to <ip>
- connection works fine. The next step is to enable DEBUG logs inconfig.env
and open a github issue -
telnet: can't connect to remote host (<ip>): Connection refused
- The next step is: fix your network configuration
-
Random read timeouts
For best performance, multiple Modbus registers are read at once, in so called register ranges. It's been reported here that Deye-SUN-5K-SG03LP1 reading times out when more than 16 registers is requested at once. To mitigate this problem you may try to set DEYE_LOGGER_MAX_REG_RANGE_LENGTH
to lower number.
Configuration
All configuration options are controlled through environment variables.
-
LOG_LEVEL
- application log level, can be any ofDEBUG
,INFO
,WARN
,ERROR
, defaults toINFO
-
LOG_STREAM
- log destination stream, can be any ofSTDOUT
,STDERR
, defaults toSTDOUT
-
DEYE_PUBLISH_ON_CHANGE
- when set totrue
, the event data will only be published if it has changed compared to last readings, defaults tofalse
-
DEYE_PUBLISH_ON_CHANGE_MAX_INTERVAL
- whenDEYE_PUBLISH_ON_CHANGE
istrue
, this variable defines the maximum age of a valid event list in seconds, defaults to 360 seconds -
DEYE_DATA_READ_INTERVAL
- interval between subsequent data reads, in seconds, defaults to 60 -
DEYE_METRIC_GROUPS
- a comma delimited set of:-
string
- string inverter -
micro
- micro inverter -
deye_hybrid
- hybrid inverter -
deye_hybrid_battery
- hybrid inverter battery -
deye_hybrid_timeofuse
- hybrid inverter time-of-use settings -
deye_sg04lp3
- sg04lp3 inverter -
deye_sg04lp3_battery
- sg04lp3 battery -
deye_sg04lp3_ups
- sg04lp3 ups -
deye_sg04lp3_timeofuse
- sg04lp3 time-of-use settings -
deye_sg01hp3
- sg01hp3 inverter -
deye_sg01hp3_battery
- sg01hp3 battery -
deye_sg01hp3_bms
- sg01hp3 bms -
deye_sg01hp3_ups
- sg01hp3 ups -
igen_dtsd422
- dtsd422 smart meter -
settings
- inverter settings, all types except micro -
settings_micro
- inverter settings for micro inverters
-
-
DEYE_LOGGER_COUNT
- declares the number of inverters, and therefore loggers to connect, optional, defaults to0
, which means, that multi-inverter support is disabled -
DEYE_LOGGER_SERIAL_NUMBER
orDEYE_LOGGER_{N}_SERIAL_NUMBER
- inverter data logger serial number -
DEYE_LOGGER_IP_ADDRESS
orDEYE_LOGGER_{N}_IP_ADDRESS
- inverter data logger IP address -
DEYE_LOGGER_PORT
orDEYE_LOGGER_{N}_PORT
- inverter data logger communication port, optional, defaults to 8899 for Modbus/TCP, and 48899 for Modbus/AT -
DEYE_LOGGER_PROTOCOL
orDEYE_LOGGER_{N}_PROTOCOL
- inverter communication protocol, optional, eithertcp
for Modbus/TCP, orat
for Modbus/AT, defaults totcp
-
DEYE_LOGGER_MAX_REG_RANGE_LENGTH
orDEYE_LOGGER_{N}_MAX_REG_RANGE_LENGTH
- controls maximum number of registers to be read in a single Modbus registers read operation, defaults to 256 -
DEYE_FEATURE_MQTT_PUBLISHER
- controls, if the service will publish metrics over mqtt, defaults totrue
-
DEYE_FEATURE_SET_TIME
- when set totrue
, the service will automatically set the inverter/logger time, defaults tofalse
-
DEYE_FEATURE_ACTIVE_POWER_REGULATION
- enables active power regulation control over MQTT command topic -
DEYE_FEATURE_TIME_OF_USE
- enables Time Of Use feature control over MQTT -
DEYE_FEATURE_MULTI_INVERTER_DATA_AGGREGATOR
- enables multi-inverter data aggregation and publishing -
MQTT_HOST
- MQTT Broker IP address -
MQTT_PORT
- MQTT Broker port, , defaults to1883
-
MQTT_USERNAME
- MQTT Broker username for authentication, defaults toNone
-
MQTT_PASSWORD
- MQTT Broker password for authentication, defaults toNone
-
MQTT_TOPIC_PREFIX
- mqtt topic prefix used for all inverter metrics, defaults todeye
-
MQTT_AVAILABILITY_TOPIC
- mqtt availability topic, defaults tostatus
-
MQTT_LOGGER_STATUS_TOPIC
- logger connectivity status topic, defaults tologger_status
-
MQTT_TLS_ENABLED
- enables TLS encryption for the communication with the broker, defaults tofalse
-
MQTT_TLS_INSECURE
- Set to true in order to skip server certificate verification, defaults tofalse
-
MQTT_TLS_CA_CERT_PATH
- CA certificate location to be used instead of the system certification authority, defaults toNone
-
MQTT_TLS_CLIENT_CERT_PATH
- Client certificate location for TLS based authentication, defaults toNone
-
MQTT_TLS_CLIENT_KEY_PATH
- Client private key location for TLS based authentication, defaults toNone
-
PLUGINS_DIR
- Path to a directory containing custom plugins extending the functionality of the service
Publish on change feature
The Deye logger usually only updates the measurements only every 5 minutes, so that shorter DEYE_DATA_READ_INTERVAL
values
would provide duplicate readings of the same measurements. Increasing the read interval to 5 minutes is not a good solution
since it is not known when the measurements are actually updated which could add a delay of one 5 min interval.
To get the latest measurements without much delay but still avoid publishing duplicate readings, the DEYE_PUBLISH_ON_CHANGE
option can be enabled. With this feature, a new logger reading is only published if any of the new values differs from the
previous reading.
For the rare case that none of the measurements may have changed between subsequent measurements, a maximum interval between
two published messaged is configured with the variable DEYE_PUBLISH_ON_CHANGE_MAX_INTERVAL
(default 360 seconds = 6 minutes).
Reading and writing raw register values
The tool allows reading and writing raw register values directly in the terminal.
USE AT YOUR OWN RISK! Be sure to know what you are doing. Writing invalid values may damage the inverter. By using this tool you accept this risk, and you take full responsibility for the consequences.
-
To read register value execute:
docker run --rm --env-file config.env ghcr.io/kbialek/deye-inverter-mqtt r <reg_address>
where
<reg_address>
is register address (decimal) -
To write register value execute:
docker run --rm --env-file config.env ghcr.io/kbialek/deye-inverter-mqtt w <reg_address> <reg_value>
where
<reg_address>
is register address (decimal), and <reg_value> is a value to set (decimal)
Home Assistant integration
This project currently has no integration with Home Assistant. You can manually configure HA to use these data, or you can write a plugin as described earlier in this document.
For help with integration, see
Other related projects and resources
- https://github.com/StephanJoubert/home_assistant_solarman
- https://github.com/dasrecht/deye-firmware
- https://github.com/Hypfer/deye-microinverter-cloud-free
- https://github.com/jedie/inverter-connect
- https://github.com/MichaluxPL/Sofar_LSW3
- https://github.com/s10l/deye-logger-at-cmd
Development
Read CONTRIBUTING.md