Hello,
I'am trying to read multiple objects with 1 query via tcp/ip using python.
Running this code:
obj1 = GXDLMSRegister()
obj1.shortName = 39656
obj1.attributeIndex = 2
obj2 = GXDLMSRegister()
obj2.shortName = 39800
obj2.attributeIndex = 2
objects = [obj1, obj2]
packets = client.readList(objects)
for p in packets:
reply = send_and_receive(p)
client.getData(reply)
gives me an error: