欢迎来到天天文库
浏览记录
ID:19403848
大小:67.38 KB
页数:16页
时间:2018-09-25
《c#上位机串口通信助手源代码详解》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、c#上位机串口通信助手源代码实例详解一、功能1软件打开时,自动检测有效COM端口2软件打开时,自动复原到上次关闭时的状态3不必关闭串口,即可直接进行更改初始化设置内容(串口号、波特率、数据位、停止位、校验位),可按更改后的信息自动将串口重新打开4可统计接收字节和发送字节的个数5接收数据可按16进制数据和非16进制数据进行整体转换6可将接收到数据进行保存7可设置自动发送,发送时间可进行实时更改8可按字符串、16进制字节、文件方式进行发送,字符串和16进制字节可分别进行存储,内容互不干扰9按16进制发送时,可自动校验格式,不
2、会输错10可清空发送或接收区域的数据二、使用工具VisualStudio2015三、程序详解1界面创建图1用winform创建如图1所示界面,控件名字分别为:端口号:cbxCOMPort波特率:cbxBaudRate数据位:cbxDataBits停止位:cbxStopBits校验位:label5打开串口按钮:btnOpenCom发送(byte):tbSendCount接收(byte):tbReceivedCount清空计数按钮:btnClearCount按16进制显示:cb16Display接收区清空内容按钮:btnCl
3、earReceived保存数据按钮:btnSaveFile接收数据框:tbReceivedData发送数据框:tbSendData自动发送:cbAutomaticSend间隔时间:tbSpaceTime按16进制发送:cb16Send发送区清空内容按钮:btnClearSend读入文件按钮:btnReadFile发送按钮:btnSend2创建一个方法类按Ctrl+shift+A快捷键创建一个类,名字叫Methods,代码为:usingSystem;usingSystem.Collections;usingSystem.C
4、ollections.Generic;usingSystem.IO.Ports;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespace串口助手sdd{classMethods{//获取有效的COM口publicstaticstring[]ActivePorts(){ArrayListactivePorts=newArrayList();foreach(stringpnameinSerialPort.GetPortNames()){ac
5、tivePorts.Add(Convert.ToInt32(pname.Substring(3)));}activePorts.Sort();string[]mystr=newstring[activePorts.Count];inti=0;foreach(intnuminactivePorts){mystr[i++]="COM"+num.ToString();}returnmystr;}//16进制字符串转换为byte字符数组publicstaticByte[]_16strToHex(stringstrValues){
6、string[]hexValuesSplit=strValues.Split('');Byte[]hexValues=newByte[hexValuesSplit.Length];Console.WriteLine(hexValuesSplit.Length);for(inti=0;i7、cstaticstringByteTo16Str(byte[]bytes){stringrecData=null;//创建接收数据的字符串foreach(byteoutByteinbytes)//将字节数组以16进制形式遍历到一个字符串内{recData+=outByte.ToString("X2")+"";}returnrecData;}//16进制字符串转换字符串publicstaticstring_16strToStr(string_16str){stringoutStr=null;byte[]streamByte8、=_16strToHex(_16str);outStr=Encoding.Default.GetString(streamByte);returnoutStr;}}}2Form1.cs的代码为:usingSystem;usingSystem.Collections.Generic;usingSystem.Compon
7、cstaticstringByteTo16Str(byte[]bytes){stringrecData=null;//创建接收数据的字符串foreach(byteoutByteinbytes)//将字节数组以16进制形式遍历到一个字符串内{recData+=outByte.ToString("X2")+"";}returnrecData;}//16进制字符串转换字符串publicstaticstring_16strToStr(string_16str){stringoutStr=null;byte[]streamByte
8、=_16strToHex(_16str);outStr=Encoding.Default.GetString(streamByte);returnoutStr;}}}2Form1.cs的代码为:usingSystem;usingSystem.Collections.Generic;usingSystem.Compon
此文档下载收益归作者所有