By giancarlo , 24 May, 2022 Forums Gurux.DLMS Hello, I am triyng to access a proprietary OBIS like 7.0.0.2.4.255, which I cannot find in the standard, and containing a sw version plus a checksum. Is it possible to read it in c++? I could not find any relevant info about this. Thanks in advance Hi, Hi, Yes, you can do it. You need to know the interface type. If you don't know it, read the association view and find object by OBIS code. If it's example data you can do it like this: CGXDLMSData custom("7.0.0.2.4.255"); if ((ret = Read(&custom, 2, str)) == 0) { ... } BR, Mikko
Hi, Hi, Yes, you can do it. You need to know the interface type. If you don't know it, read the association view and find object by OBIS code. If it's example data you can do it like this: CGXDLMSData custom("7.0.0.2.4.255"); if ((ret = Read(&custom, 2, str)) == 0) { ... } BR, Mikko
Hi,
Hi,
Yes, you can do it. You need to know the interface type. If you don't know it, read the association view and find object by OBIS code.
If it's example data you can do it like this:
CGXDLMSData custom("7.0.0.2.4.255");
if ((ret = Read(&custom, 2, str)) == 0)
{
...
}
BR,
Mikko