That depends on the meter model. Some meters expect that some profile generics are read using start and end time and some with index and count. Some meters allow only read-all for some profile generic objects.
You need to check how you can read this meter. That is not defined in the DLMS standard.
Hi, You need to read the…
Hi,
You need to read the profile generic object using the read method. You can do it something like this:
GXDLMSProfileGeneric pg = new GXDLMSProfileGeneric("1.0.94.91.0.255");
//Read capture objects.
read(pg, 3);
//Read buffer.
read(pg, 2);
You can get more information from profile generic from here:
https://www.gurux.fi/Gurux.DLMS.Objects.GXDLMSProfileGeneric
BR,
Mikko
Thank you for the reply it's…
Thank you for the reply it's worked for Billing, insta, LP, Daily load profile, and power events.
But the Same is not working voltage, current and other events. For this buffer is getting a null value.
And same is not working with GXDlmsdirector too.
Please let me know how to read other events.
Hi, That depends on the…
Hi,
That depends on the meter model. Some meters expect that some profile generics are read using start and end time and some with index and count. Some meters allow only read-all for some profile generic objects.
You need to check how you can read this meter. That is not defined in the DLMS standard.
BR,
Mikko