- using Houdar.Core.Communication.Transport;
- namespace Houdar.PLC.Driver.Simenss.Protocol.DateTime
- {
- public class FunCtrlResponse
- {
- public byte Fun;
- public byte Para;
- public void Build(ByteBuffer buffer)
- {
- Fun= buffer.PopByte();
- Para = buffer.PopByte();
- }
- }
- }
|