本文主要是介绍用C#编写一个串口助手接收温湿度、烟雾浓度传感器数据(cc2530),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
C#做一个串口调试助手
新建工程
选择visual c#---->窗体应用程序
界面设计:拖拽一个textbox(文本框)控件、两个label(标签)控件、三个button(按钮)控件、两个combobox(组合框)控件。选中combobox(组合框)控件在右下方属性中找到items点开集合输入你的波特率数值。
修改label、button属性中的Text,输入你想要的内容,调整Textbox。
获取电脑上的串口号需要用到serialPort控件,直接从工具箱中拖拽过来。
.界面都做好后就开始敲代码了
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO.Ports;//头文件namespace WindowsFormsApp1
{public partial class Form1 : Form{public Form1(){InitializeComponent();CheckForIllegalCrossThreadCalls = false;serialPort1.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);serialPort1.Encoding = Encoding.GetEncoding("GB2312");System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false;}/// /数据接收部分private void port_DataReceived(object sender, SerialDataReceivedEventArgs e)//接收函数 SerialDataReceivedEventArgs写错,导致错误,谨记{try{string recive_data;recive_data = serialPort1.ReadExisting();textBox1.AppendText(recive_data);textBox1.AppendText("\r\n");}catch { }}private void comboBox1_SelectedIndexChanged(object sender, EventArgs e){}private void Form1_Load(object sender, EventArgs e){}/// //搜索串口部分private void button1_Click(object sender, EventArgs e){SearchAnAddSerialToComboBox(serialPort1, comboBox1);}private void SearchAnAddSerialToComboBox(SerialPort MyPort, ComboBox MyBox)//搜索串口函数{ //将可用的串口号添加到ComboBoxstring[] NmberOfport = new string[20];//最多容纳20个,太多会卡,影响效率string MidString1;//中间数组,用于缓存MyBox.Items.Clear();//清空combobox的内容for (int i = 1; i < 20; i++){try //核心是靠try和catch 完成遍历{MidString1 = "COM" + i.ToString(); //把串口名字赋给MidString1MyPort.PortName = MidString1; //把MidString1赋给 MyPort.PortName MyPort.Open(); //如果失败,后面代码不执行??NmberOfport[i - 1] = MidString1; //依次把MidString1的字符赋给NmberOfportMyBox.Items.Add(MidString1); //打开成功,添加到下列列表MyPort.Close(); //关闭MyBox.Text = NmberOfport[i - 1]; //显示最后扫描成功那个串口}catch { };}}/// 打开串口部分private void button2_Click(object sender, EventArgs e){if (button2.Text == "打开串口")//为0时,表示关闭,此时可以进行打开操作{try{serialPort1.PortName = comboBox1.Text;//获取端口号serialPort1.BaudRate = Convert.ToInt32(comboBox2.Text);//设置波特率serialPort1.Open();//打开串口button2.Text = " 关闭串口";}catch{MessageBox.Show("串口打开错误");}}else //为1时,表示开启,此时可以进行关闭操作{try{serialPort1.Close();//关闭串口button2.Text = "打开串口";//置位为0,表示状态为关闭}catch { }}}/// <summary>/// /清空显示部分/// </summary>/// <param name="sender"></param>/// <param name="e"></param>private void button3_Click(object sender, EventArgs e){textBox1.Clear();}}
}
以下是程序源码自取
http://链接:https://pan.baidu.com/s/13H5UBFEz_AW8k8Dpzu4BNA?pwd=hxy6 提取码:hxy6
这篇关于用C#编写一个串口助手接收温湿度、烟雾浓度传感器数据(cc2530)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!