我发现的最接近工作的例子是:https://github.com/ms-iot/samples/tree/develop/SerialUART/CS 但是这个在读书时很烦人。
视频:http://sendvid.com/zsc1o78p
我正在使用这个简单的arduino代码进行测试。
int x = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
x++;
Serial.println("Halloooooooo" + String(x));
delay(300);
}
有什么建议吗?
答案 0 :(得分:0)
我通过减少它来实现它 serialPort.ReadTimeout 。