Hello Sir,
I need to know how can i write mdip value in meter using c# code.
For example:- GXDLMSData mdip = new GXDLMSData("1.0.0.8.0.255");
Now how can i write the value of attribute 2 in this.
I want to set the values for below obis
1.0.0.8.0.255 = Ch. 0 Measurement period 1, for averaging scheme 1
1.0.0.8.4.255 = Ch. 0 Recording interval 1, for load profile
1.0.0.8.5.255 = Ch. 0 Recording interval 2, for load profile
Hi,
Hi,
GXDLMSData mdip = new GXDLMSData("1.0.0.8.0.255");
mdip.Value = "Value that you want to write";
Write(mdip, 2);
BR,
Mikko