QSerial error communicating with Arduino
问题 I wrote a simple program to use Qt (version 5.5 built from source for Visual Studio 2013 following this guide) to comunicate with Arduino. Here is a simple firmware which read from the serial and after 10 seconds prints "1" back: void setup() { Serial.begin(9600); //Open Serial connection for debugging } void loop() { if (Serial.available()) { char user_input = Serial.read(); if (user_input == '1') { delay(10000); Serial.print('1'); } } Here is the Qt program which send "1" on serial when I