C#中怎么实现监听串口,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
创新互联是一家专业提供闽侯企业网站建设,专注与成都做网站、成都网站设计、html5、小程序制作等业务。10年已为闽侯众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。
C#串口监听的实现在 Visual Stdio 2005中,对于串口操作Framework提供了一个很好的类接口-SerialPort,在这当中,串口数据的读取与写入有较大的不同。C#串口监听的实现由于串口不知道数据何时到达,因此有两种方法可以实现C#串口监听之串口数据的读取。1.用线程实时读串口2.用事件触发方式实现。但由于线程实时读串口的效率不是十分高效,因此比较好的方法是事件触发的方式。在SerialPort类中有DataReceived事件,当串口的读缓存有数据到达时则触发DataReceived事件,其中SerialPort.ReceivedBytesThreshold属性决定了当串口读缓存中数据多少个时才触发DataReceived事件,默认为1。
此外,SerialPort.DataReceived事件运行比较特殊,其运行在辅线程,不能与主线程中的显示数据控件直接进行数据传输,必须用间接的方式实现。
C#串口监听实现一、创建WIndow项目,设计界面
C#串口监听实现二、编写实现代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO.Ports; //using Microsoft.VisualBasic.Devices; //C#串口监听 namespace Demo ...{ public partial class Form1 : Form ...{ public Form1() ...{ InitializeComponent(); } private SerialPort Sp = new SerialPort(); public delegate void HandleInterfaceUpdataDelegate(string text); private HandleInterfaceUpdataDelegate interfaceUpdataHandle; private void Form1_Load(object sender, EventArgs e) ...{ tbID.Focus(); BtPause.Enabled = false; } private void UpdateTextBox(string text) ...{ tbData.Text = text; } public void Sp_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e) ...{ byte[] readBuffer = new byte[Sp.ReadBufferSize]; Sp.Read(readBuffer, 0, readBuffer.Length); this.Invoke(interfaceUpdataHandle, new string[] ...{ Encoding.UTF8.GetString(readBuffer) }); } private void Form1_FormClosing( object sender, FormClosingEventArgs e) ...{ Sp.Close(); } private void btENT_Click(object sender, EventArgs e) ...{ if ((tbID.Text.Trim() != "") && (cmRate.Text != "")) ...{ interfaceUpdataHandle = new HandleInterfaceUpdataDelegate(UpdateTextBox); //C#串口监听之实例化委托对象 Sp.PortName = tbID.Text.Trim(); serialPort1.BaudRate = Convert.ToInt32(cmRate.Text.Trim()); Sp.Parity = Parity.None; Sp.StopBits = StopBits.One; Sp.DataReceived += new SerialDataReceivedEventHandler(Sp_DataReceived); Sp.ReceivedBytesThreshold = 1; try ...{ Sp.Open(); tbID.ReadOnly = true; BtPause.Enabled = true; btENT.Enabled = false; } catch ...{ MessageBox.Show( "端口" + tbID.Text.Trim() + "打开失败!"); } }//C#串口监听 else ...{ MessageBox.Show("请输入正确的端口号和波特率!"); tbID.Focus(); } } private void BtPause_Click( object sender, EventArgs e) ...{ Sp.Close(); tbID.ReadOnly = false; btENT.Enabled = true; BtPause.Enabled = false; } }//C#串口监听 }
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注创新互联行业资讯频道,感谢您对创新互联的支持。
售后响应及时
7×24小时客服热线数据备份
更安全、更高效、更稳定价格公道精准
项目经理精准报价不弄虚作假合作无风险
重合同讲信誉,无效全额退款