I am using DLMS C++ server code, and i am not able to set value and discription for CGXDLMSData class object.
I tried
CGXDLMSData* d = new CGXDLMSData("1.1.0.2.1.128", id);
d->SetDescription("Interval data");
d->SetValue(1,id);
But not able to get the value & Discription on Director.
kindly let us know what is the way to set the value and discription for the same.
Description is not moved between server and client. Description describes OBIS code what you have selected. Value you can set in constructor like you have set or using SetValue with one parameter.
Like this
d->SetValue(123);
CGXDLMSData Class setting Value & Discription
Hi,
Description is not moved between server and client. Description describes OBIS code what you have selected. Value you can set in constructor like you have set or using SetValue with one parameter.
Like this
d->SetValue(123);
BR,
Mikko