Automatic upload from huawei sun200

what settings I need to make in Huawei interface to send data to PVouput ?

2 Likes

any solution to this?

I have it working,
i have made a script < with a raspberry pi. with wifi and ethernet>
its recieve the data from the wifi of the sun2000 wifi. port 6607
and put it on pvoutput.org.
starting with this:
from pymodbus.client.sync import ModbusTcpClient

modbus_ip = “192.168.200.1”
modbus_port = 6607 # Pas dit aan naar de juiste poort

client = ModbusTcpClient(modbus_ip, port=modbus_port)

if client.connect():
print(“Succesvol verbonden!”)
else:
print(“Kan geen verbinding maken met Modbus-server.”)

client.close()