Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 C# 检测 Arduino Mega2560 的波特率。我的代码如下:
SerialPort SP=new SerialPort(); SP.BaudRate = 115200;
BaudRate 被指定为这样的常量,但我想自动检测它。
例如,如果 Arduino 代码包含 Serial.begin(xxxx),则程序应声明 SP.BaudRate = xxxx。
我该怎么做?