martiby / multiplus2

Direct control of a Victron Multiplus II

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Direct control of a Victron Multiplus II

The script allows the direct control of the charging and feeding power in the grid parallel operation. The Multiplus 2 is connected to a MK3 or MK2.2b Interface and controlled with ESS Mode 3. No GX device or Venus device is needed. The python script has no dependencies.

update()   # get the Multiplus-II status
command()  # set >0 for charging and <0 for feeding power in watt
wakeup() 
sleep()

Simple demo application

demo_multiplus2.py

mp2.update()    # read all information
print(mp2.data)  
time.sleep(0.5)
mp2.command(500)  # set charge power to 500Watt
time.sleep(0.5)

Demo Applikation in tkinter

Screenshot of demo_multiplus2_gui.py

About

Direct control of a Victron Multiplus II


Languages

Language:Python 100.0%