1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-18 12:54:25 +01:00

Merge pull request #2268 from arduino/ide-1.5.x-slowed-down-consoleread

Bridge: slowing down ConsoleRead a bit
This commit is contained in:
Cristian Maglie 2014-08-28 15:54:26 +02:00
commit fd3ec2531c

View File

@ -53,6 +53,8 @@ void loop() {
else { // if the buffer is empty Cosole.read() returns -1
name += c; // append the read char from Console to the name string
}
} else {
delay(100);
}
}