C#中串口通信编程.docx
《C#中串口通信编程.docx》由会员分享,可在线阅读,更多相关《C#中串口通信编程.docx(15页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、C#中串口通信编程本文将介绍如何在.NET平台下使用C#创建串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports。这个新的框架不但可以访问计算机上的串口,还可以和串口设备进行通信。我们将使用标准的RS 232 C 在PC间通信。它工作在全双工模式下,而且我们不打算使用任何的握手或流控制器,而是使用无modem连接。命名空间System.IO.Ports命名空间中最重用的是SerialPort 类。创建SerialPort 对象通过创建SerialPort 对象,我们可以在程序中控制串口通信的全过程。我们将要用到的SerialPort 类的方法:Read
2、Line():从输入缓冲区读一新行的值,如果没有,会返回NULLWriteLine(string):写入输出缓冲Open():打开一个新的串口连接Close():关闭Code:/create a Serial Port objectSerialPort sp = new SerialPort ();默认情况下,DataBits 值是8,StopBits 是1,通信端口是COM1。这些都可以在下面的属性中重新设置:BaudRate:串口的波特率StopBits:每个字节的停止位数量ReadTimeout:当读操作没有完成时的停止时间。单位,毫秒还有不少其它公共属性,自己查阅MSDN。串口的硬件知
3、识在数据传输的时候,每个字节的数据通过单个的电缆线传输。包包括开始位,数据,结束为。一旦开始位传出,后面就会传数据,可能是5,6,7或8位,就看你的设定了。发送和接收必须设定同样的波特率和数据位数。无猫模式没有Modem模式的电缆只是简单地交叉传送和接收线。同样DTR & DSR, 和 RTS & CTS也需要交叉。RS232针图这里,我们三条线。互连2和3(一段的2pin连接3pin),连接两端的5pin。示例程序主程序如果想使用默认属性,按“Save Status”按钮,如果想改变属性按“Property”。它会弹出下图:设定好之后,可以通信了。主窗口的代码Code:#region Usi
4、ng directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Windows.Forms;using System.IO.Ports;#endregionnamespace Serialexpamplepartial class Form1 : Form/create instance of property page/property page is used to set va
5、lues for stop bits and/baud ratePropertyPage pp = new PropertyPage();/create an Serial Port objectSerialPort sp = new SerialPort();public Form1()InitializeComponent();private void propertyButton_Click(object sender, EventArgs e)/show property dialogpp.ShowDialog();propertyButton.Hide();private void
6、sendButton_Click(object sender, EventArgs e)try/write line to serial portsp.WriteLine(textBox.Text);/clear the text boxtextBox.Text = ;catch (System.Exception ex)baudRatelLabel.Text = ex.Message;private void ReadButton_Click(object sender, EventArgs e)try/clear the text boxtextBox.Text = ;/read seri
7、al port and displayed the data in text boxtextBox.Text = sp.ReadLine();catch(System.Exception ex)baudRatelLabel.Text = ex.Message;private void Form1_Load(object sender, EventArgs e)private void Form1_FormClosing(object sender, FormClosingEventArgs e)MessageBox.Show(Do u want to Close the App);sp.Clo
8、se();private void startCommButton_Click(object sender, EventArgs e)startCommButton.Hide();sendButton.Show();readButton.Show();textBox.Show();/when we want to save the status(value)private void saveStatusButton_Click_1(object sender, EventArgs e)/display values/if no property is set the default value
9、sif (pp.bRate = & pp.sBits = )dataBitLabel.Text = BaudRate = + sp.BaudRate.ToString();readTimeOutLabel.Text = StopBits = + sp.StopBits.ToString();elsedataBitLabel.Text = BaudRate = + pp.bRate;readTimeOutLabel.Text = StopBits = + pp.sBits;parityLabel.Text = DataBits = + sp.DataBits.ToString();stopBit
10、Label.Text = Parity = + sp.Parity.ToString();readTimeOutLabel.Text = ReadTimeout = +sp.ReadTimeout.ToString();if (propertyButton.Visible = true)propertyButton.Hide();saveStatusButton.Hide();startCommButton.Show();try/open serial portsp.Open();/set read time out to 500 mssp.ReadTimeout = 500;catch (S
11、ystem.Exception ex)baudRatelLabel.Text = ex.Message;属性设置对话框代码:Code:#region Using directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;#endregionnamespace Serialexpamplepartial class Pro
12、pertyPage : Form/variables for storing values of baud rate and stop bitsprivate string baudR=;private string stopB=;/property for setting and getting baud rate and stop bitspublic string bRategetreturn baudR;setbaudR = value;public string sBitsgetreturn stopB;setstopB = value;public PropertyPage()In
13、itializeComponent();private void cancelButton_Click(object sender, EventArgs e)this.bRate = ;this.sBits = ;/close formthis.Close();private void okButton_Click_1(object sender, EventArgs e)/here we set the value for stop bits and baud rate.this.bRate = BaudRateComboBox.Text;this.sBits = stopBitComboB
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- C# 串口 通信 编程
限制150内