Skip to content

vikt0rm/dbus-3em-goe-multiplus-gridmeter

 
 

Repository files navigation

dbus-shelly-3em-smartmeter

Integrate Shelly 3EM smart meter into Victron Energies Venus OS

Purpose

With the scripts in this repo it should be easy possible to install, uninstall, restart a service that connects the Shelly 3EM to the VenusOS and GX devices from Victron. Idea is pasend on @RalfZim project linked below.

Inspiration

This project is my first on GitHub and with the Victron Venus OS, so I took some ideas and approaches from the following projects - many thanks for sharing the knowledge:

How it works

My setup

  • Shelly 3EM with latest firmware (20220209-094824/v1.11.8-g8c7bb8d)
    • 3-Phase installation (normal for Germany)
    • Connected to Wifi network "A"
    • IP 192.168.2.13/24
  • Victron Energy Cerbo GX with Venus OS - Firmware v2.93
    • No other devices from Victron connected (still waiting for shipment of Multiplus-2)
    • Connected to Wifi network "A"
    • IP 192.168.2.20/24

Details / Process

As mentioned above the script is inspired by @RalfZim fronius smartmeter implementation. So what is the script doing:

  • Running as a service
  • connecting to DBus of the Venus OS com.victronenergy.grid.http_40 or com.victronenergy.pvinverter.http_40
  • After successful DBus connection Shelly 3EM is accessed via REST-API - simply the /status is called and a JSON is returned with all details A sample JSON file from Shelly 3EM can be found here
  • Serial/MAC is taken from the response as device serial
  • Paths are added to the DBus with default value 0 - including some settings like name, etc
  • After that a "loop" is started which pulls Shelly 3EM data every 750ms from the REST-API and updates the values in the DBus

Thats it 😄

Pictures

Tile Overview Remote Console - Overview SmartMeter - Values SmartMeter - Device Details

Install & Configuration

Get the code

Just grap a copy of the main branche and copy them to /data/dbus-shelly-3em-smartmeter. After that call the install.sh script.

The following script should do everything for you:

wget https://github.com/fabian-lauer/dbus-shelly-3em-smartmeter/archive/refs/heads/main.zip
unzip main.zip "dbus-shelly-3em-smartmeter-main/*" -d /data
mv /data/dbus-shelly-3em-smartmeter-main /data/dbus-shelly-3em-smartmeter
chmod a+x /data/dbus-shelly-3em-smartmeter/install.sh
/data/dbus-shelly-3em-smartmeter/install.sh
rm main.zip

⚠️ Check configuration after that - because service is already installed an running and with wrong connection data (host, username, pwd) you will spam the log-file

Change config.ini

Within the project there is a file /data/dbus-shelly-3em-smartmeter/config.ini - just change the values - most important is the host, username and password in section "ONPREMISE". More details below:

Section Config vlaue Explanation
DEFAULT AccessType Fixed value 'OnPremise'
DEFAULT SignOfLifeLog Time in minutes how often a status is added to the log-file current.log with log-level INFO
DEFAULT CustomName Name of your device - usefull if you want to run multiple versions of the script
DEFAULT DeviceInstance DeviceInstanceNumber e.g. 40
DEFAULT Role use 'GRID' or 'PVINVERTER' to set the type of the shelly 3EM
DEFAULT Position Available Postions: 0 = AC, 1 = AC-Out 1, AC-Out 2
DEFAULT LogLevel Define the level of logging - lookup: https://docs.python.org/3/library/logging.html#levels
ONPREMISE Host IP or hostname of on-premise Shelly 3EM web-interface
ONPREMISE Username Username for htaccess login - leave blank if no username/password required
ONPREMISE Password Password for htaccess login - leave blank if no username/password required
ONPREMISE L1Position Which input on the Shelly in 3-phase grid is supplying a single Multi

Remapping L1

In a 3-phase grid with a single Multi, Venus OS expects L1 to be supplying the only Multi. This is not always the case. If for example your Multi is supplied by L3 (Input C on the Shelly) your GX device will show AC Loads as consuming from both L1 and L3. Setting L1Position to the appropriate Shelly input allows for remapping the phases and showing correct data on the GX device.

If your single Multi is connected to the Input A on the Shelly you don't need to change this setting. Setting L1Position to 2 would swap the B CT & Voltage sensors data on the Shelly with the A CT & Voltage sensors data on the Shelly. Respectively, setting L1Position to 3 would swap A and C inputs.

Used documentation

Discussions on the web

This module/repository has been posted on the following threads:

About

Combine Shelly 3EM and go-eCharger as smart meter into Victron Energies Venus OS

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 91.3%
  • Shell 8.7%