此代码应适用于 USB 转串口设备,并且也可能适用于您的体重秤。一些端口设置是通过下载/安装 WinCT(RsCom、RsKey 和 RsWeight)找到的。然后,在 Windows 开始菜单中的 A&D WinCT 下,选择 RsCom 或 RsKey。使用 RsCom 或 RsKey 是检查 USB 电缆/连接是否正常工作的简单方法。我在 USB 串行设备上使用了“RsKey”和“RsCom”,它似乎可以工作。
创建一个 WinForms 项目
VS 2017:
打开 Visual Studio
展开已安装
展开Visual C#
单击Windows 桌面
选择Windows 窗体应用程序(.NET Framework)
指定项目名称(名称:ReadSerialPort)
点击确定
VS 2019:
打开 Visual Studio
单击 无需代码继续
单击 文件
选择新建
选择项目
C# Windows 桌面
单击Windows 窗体应用程序(.NET Framework)
点击下一步
指定项目名称(名称: ReadSerialPort)
单击创建
注意:从现在开始,VS 2017 和 VS 2019 的过程是相同的。
添加班级: SerialPortDataReceivedEventArgs
注意:此类将与将从串行端口设备接收到的数据发送给订阅者的事件一起使用。
在 VS 菜单上,选择 项目
选择添加类(名称: SerialPortDataReceivedEventArgs.cs)
SerialPortDataReceivedEventArgs.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ReadSerialPort { public delegate void SerialPortDataReceivedEventHandler(object sender, SerialPortDataReceivedEventArgs e); public class SerialPortDataReceivedEventArgs : System.EventArgs { public string Data { get; private set; } = string.Empty; public SerialPortDataReceivedEventArgs(string data) { this.Data = data; } } }
添加对 System.Management 的引用
在 VS 菜单上,选择 项目
选择添加引用
展开程序集
检查System.Management
单击确定
添加类:ComPorts
在 VS 菜单上,选择项目
选择添加类(名称:ComPorts.cs)
ComPorts.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ReadSerialPort { public class ComPorts { public List<ComPortInfo> Ports { get; set; } = new List<ComPortInfo>(); } public class ComPortInfo { public string Name { get; set; } public string PortName { get; set; } public ComPortInfo() { } public ComPortInfo(string name, string portName) { this.Name = name; this.PortName = portName; } } }
添加类:HelperSerialPort
在 VS 菜单上,选择项目
选择添加类(名称:HelperSerialPort.cs)
HelperSerialPort.cs
//如果使用 .NET 5,请安装 NuGet 包: System.IO.Ports
使用 System;
使用 System.Collections.Generic;
使用 System.Linq;
使用 System.Text;
使用 System.Threading.Tasks;
使用 System.IO.Ports;
使用 System.Diagnostics;
使用System.Management;
命名空间 ReadSerialPort
{
public enum PortBaudRate : int { Baud1200 = 1200, Baud2400 = 2400, Baud4800 = 4800, Baud9600 = 9600, Baud14400 = 14400, Baud19200 = 19200, Baud28800 = 28800, Baud38400 = 38400 }; public class HelperSerialPort : IDisposable { public delegate void SerialPortErrorReceivedEventHandler(object sender, SerialErrorReceivedEventArgs e); public event SerialPortDataReceivedEventHandler DataReceived; public event SerialPortErrorReceivedEventHandler ErrorReceived; private string _dataReceived = string.Empty; public System.IO.Ports.SerialPort Port { get; private set; } public HelperSerialPort() { //create new instance Port = new SerialPort(); } public string Connect(string comPort, PortBaudRate baudRate = PortBaudRate.Baud9600) { string portName = string.Empty; string result = string.Empty; if (String.IsNullOrEmpty(comPort)) { System.Windows.Forms.MessageBox.Show("COM port not selected.", "Error - COM Port", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error); return "Error: COM port not selected."; } try { if (Port == null) { //create new instance Port = new SerialPort(); } if (!Port.IsOpen) { Debug.WriteLine("opening port"); //create new instance Port = new SerialPort(comPort); //set properties
以上是如何使用WinForms和Visual Studio读取USB串口设备的数据?的详细内容。更多信息请关注PHP中文网其他相关文章!