在哪里可以找到使用通用Windows应用程序读取串行/ UART的工作示例?

时间:2016-10-23 13:34:53

标签: c# win-universal-app uart

我发现的最接近工作的例子是: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);
}

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我通过减少它来实现它 serialPort.ReadTimeout