This is a driver for Venus OS devices (any GX device sold by Victron or a Raspberry Pi running the Venus OS image).
The driver will communicate with a Battery Management System (BMS) that support serial (RS232, RS485 or TTL UART) and Bluetooth communication (see BMS feature comparison for details). The data is then published to the Venus OS system (dbus). The main purpose is to act as a Battery Monitor in your GX and supply State of Charge (SoC) and other values to the inverter/charger.
If you find this driver helpful please consider supporting this project. You can buy me a Ko-Fi or get in contact, if you would like to donate hardware for development.
or using Paypal.me
v1.0.x
To develop this project, install the requirements. This project makes use of velib_python which is pre-installed on
Venus-OS Devices under /opt/victronenergy/dbus-systemcalc-py/ext/velib_python
. To use the python files locally,
git clone
the velib_python project to velib_python and add
velib_python to the PYTHONPATH
environment variable.
Make sure the GitHub Actions run fine in your repository. In order to make the GitHub Actions run please select in your repository settings under Actions
-> General
-> Actions permissions
the option Allow all actions and reusable workflows
. Check also in your repository settings under Actions
-> General
-> Workflow permissions
if Read and write permissions
are selected. This will check your code for Flake8 and Black Lint errors. Here is a short instruction on how to set up Flake8 and Black Lint checks in VS Code. This will save you a lot of time.
See this checklist, if you want to add a new BMS
Battery
from battery.py
.dbus-serialbattery.py
tries to figure out the correct connected BMS by looping through all known implementations of
Battery
and executing its test_connection()
. If this returns true, dbus-serialbattery.py
sticks with this battery
and then periodically executes dbushelpert.publish_battery()
. publish_battery()
executes Battery.refresh_data()
which
updates the fields of Battery. It then publishes those fields to dbus using dbushelper.publish_dbus()
/Info/
- namely:
/Info/MaxChargeCurrent
/Info/MaxDischargeCurrent
/Info/MaxChargeVoltage
/Info/BatteryLowVoltage
/Info/ChargeRequest
(not implemented in dbus-serialbattery)For more details on the victron dbus interface see the official victron dbus documentation