Skip to content

Instantly share code, notes, and snippets.

@osaether
Created December 8, 2018 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save osaether/c4debb133b1621a4eea9658a6043542d to your computer and use it in GitHub Desktop.
Save osaether/c4debb133b1621a4eea9658a6043542d to your computer and use it in GitHub Desktop.
Turn Venus GX Relay 2 on
#!/usr/bin/env python
from pymodbus.constants import Defaults
from pymodbus.client.sync import ModbusTcpClient as ModbusClient
Defaults.Timeout = 25
Defaults.Retries = 5
client = ModbusClient('ipaddress.of.venus', port='502')
client.write_register(807, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment