This is Write function:(Client C#)
// Write attribute value.
public void Write(GXDLMSObject it, int attributeIndex)
{
GXReplyData reply = new GXReplyData();
ReadDataBlock(Client.Write(it, attributeIndex), reply);
}
I try to write simple data types like this but my compiler cannot compile for "Client.Write"
Write clock
Hi,
You can do it like this:
GXDLMSClock c = new GXDLMSClock();
c.Time = DateTime.Now;
Client.Write(c,2);
BR,
Mikko