Writes data to the DM area, starting from the specified address.
Beginning DM address
DM (ushort) to write
auto buffer = appender!(const(ushort)[]); buffer.write!float(12.68); buffer.write!ushort(5); plc.writeDM(address, buffer.data);
See Implementation
Writes data to the DM area, starting from the specified address.