I have an object I need to read but the device is wrongly reporting that capture object is empty (I know it's an structure) and I can see Gurux has obtained it, but as I don't have the capture object it cannot parse it.
I'm using the python GXDLMSReader example. It's possible for the read method to return the raw array structure without throwing an error?
Hi,
Hi,
If you know what objects are in the capture object list you can add them manually.
Something like
pg = GXDLMSProfileGeneric("LOGICAL NAME")
pg.captureobjects((GXDSLMSClock(), GXDLMSCaptureObject(2, 0)))
//Add other captured objects....
read(pg, 2)
BR,
Mikko