Merge pull request #3203 from agdl/SerialEventFix

Added missing function call to serialEvent example
This commit is contained in:
Federico Fissore 2015-05-21 12:50:59 +02:00
commit 2e1696f9f4
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ void setup() {
}
void loop() {
serialEvent(); //call the function
// print the string when a newline arrives:
if (stringComplete) {
Serial.println(inputString);