gpt4 book ai didi

C#相当于VB 6的串口SETTINGS函数

转载 作者:行者123 更新时间:2023-12-02 07:50:50 25 4
gpt4 key购买 nike

在 C# 中,以下命令等效于什么?

comm.Settings = "2400,N,8,1"

最佳答案

使用以下示例...:

您将需要此使用:

using System.IO.Ports;

在你的代码中......

SerialPort comPort = new SerialPort("port", 2400, Parity.None, 8, StopBits.One); 
// This is one of 7 possible method overloads.

您还可以使用这些属性更改 SerialPort 实例的设置。

comPort.PortName = "port"; //PortName (string)
comPort.DataBits = 8; //DataBits (int) 5..8

comPort.BaudRate = 2400; //BaudRate (int)
// Default is 9600, can be up to the maximum permitted by the hardware.

comPort.StopBits = StopBits.One; //StopBits
// (StopBits.One, StopBits.None, StopBits.None, StopBits.Two, StopBits.OnePointFive)

comPort.Parity = Parity.None; //Parity
// (Parity.Odd, Parity.Even, Parity.None, Parity.Mark, Parity.Space)

关于C#相当于VB 6的串口SETTINGS函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3972734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com