Unity 串口发送十六进制byte消息

 

using UnityEngine;
using System;
using System.IO.Ports;
using UnityEngine.UI;

public class spSend : MonoBehaviour
{

    public SerialPort sp;  
/*    public Text text;*/
    static public byte[] strSend = new byte[3];
    void Start()
    {
        sp = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One);
        //串口初始化
        try
        {
            sp.Open();
            Debug.Log("成功打开");
            //text.text = "成功打开";
        }
        catch (Exception ex)
        {
            //text.text = ex.ToString();
            Debug.Log(ex);
        }
    }

    //关闭串口
    void OnApplicationQuit()
    {
        sp.Close();
        Application.Quit();
    }

    //发送
    public void SendData(byte[] data)
    {
        if (sp.IsOpen)
        {
            //text.text = data[0].ToString();
               sp.Write(data, 0, data.Length);
        }
    }
}

使用

    public void SendMsg(string s)
    {
        string msg =s;
        byte[] cmd = new byte[1024 * 1024 * 3];
        cmd = Convert16(msg);
        serialController.SendData(cmd);
    }
    private byte[] Convert16(string strText)
    {
        strText = strText.Replace(" ", "");
        byte[] bText = new byte[strText.Length / 2];
        for (int i = 0; i < strText.Length / 2; i++)
        {
            bText[i] = Convert.ToByte(Convert.ToInt32(strText.Substring(i * 2, 2), 16));
        }
        return bText;
    }

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值