正在学习当中,在网上查看了很多视频与资料
视频是up主
电子DIY工作坊https://space.bilibili.com/304463098
代码是这位网友的
- 先看视频做好界面,有改动
2.看网友的文章
修改打开串口,关闭串口以及端口的Name
粘贴代码,最好不要直接全部复制
可以优化一下该代码
cs
private void button_open_Click(object sender, EventArgs e)
{
try
{
OpenComport();//打开串口
if (_serialPort.IsOpen)
{
MessageBox.Show("已经打开串口" + comport.Text + "!", "OK");
this.baud_cbb.Text = _serialPort.BaudRate.ToString();
this.check_cbb.Text=_serialPort.Parity.ToString();
this.databit_cbb.Text= _serialPort.DataBits.ToString();
this.stopbity_cbb.Text=_serialPort.StopBits.ToString();
}
}
catch (Exception ex)
{
{
MessageBox.Show("没有串口!\n"+ex.ToString() + SerialPort.PortName.ToString());
}
}
}
3.添加事件
4.在program.cs中添加引用命名空间
5.启动后,电脑连接串口
按下确定之后,显示串口信息: