上位机指令发送

指令长度

byte : 8位 00; short:16位:00 00;int:32位 00 00 00 00  long 64位 00 00 00 00 00 00 00 00

指令编写

  System.IO.MemoryStream ms = new System.IO.MemoryStream();
  System.IO.BinaryWriter bw = new System.IO.BinaryWriter(ms);

  bw.Write((byte)0x05);  05
  bw.Write((short)(1));    01 00
  bw.Write((byte)0x05);  05

byte [] datas =  ms.ToArray();   即 05 01 00 05

可用 socket 发送datas

comStr.Append(" " + 1.ToString("x2"));  x2:转为小写16进制

comStr.Append(" " + 2.ToString("x2"));

comStr.Append(" " + 3.ToString("x2"));

 comStr.Append(" " + 4.ToString("x2"));

StringToHexByte(comStr);

字符串转16进制数组

 public static byte[] StringToHexByte(string hexString)
        {
            hexString = hexString.Replace(" ", "");
            if (hexString.Length % 2 != 0)
                hexString += " ";
            var returnBytes = new byte[hexString.Length / 2];
            for (var i = 0; i < returnBytes.Length; i++)
                returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
            return returnBytes;
        }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值