Newer
Older
SensorHub / SensorHub.Servers / Commands / CASICCommands / RealtimdCollectCmd.cs
root on 17 Sep 2021 444 bytes first commit
using SuperSocket.SocketBase.Protocol;

namespace SensorHub.Servers.Commands.CASICCommands
{
    public class RealtimdCollectCmd : RealtimeCmd
    {
        public override string Name
        {
            get
            {
                return "Collect";
            }
        }

        public RealtimdCollectCmd()
        {
            byte[] tag = { 0x20, 0x00, 0x00, 0x01, 0x00, 0x01 };
            this.tag = tag;
        }
    }
}