Hi, I have problems reading all association objects in WRAPPER mode. I don't see Clock, Limiter, SpecialDaysTable and other objects using the Python library (I use gurux-dlms 1.0.158).
GuruxDirector reads these objects without problems. (Authorization level is the same)
association_obj = GXDLMSAssociationLogicalName(ln='0.0.40.0.0.255')
association = self.reader.read(association_obj, 2)
print(list(association))
[Output removed by admin]
Hi, Try this: association…
Hi,
Try this:
association_obj = GXDLMSAssociationLogicalName(ln='0.0.40.0.0.255')
association = self.reader.read(association_obj, 2)
for it in association.objectList:
print(it)
BR,
Mikko
Thanks for answer. It was my…
Thanks for answer. It was my mistake. Everything is working.