mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
4648330a7f
In the example is stated that the function is run between one loop and the next, but actually the call to the function was missing. The comment also state that the response can be delayed using a delay in the loop,so I think that the way it should be is so by only adding a call to the function serialEvent as first operation in the loop. I so added this call.
62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
/*
|
|
Serial Event example
|
|
|
|
When new serial data arrives, this sketch adds it to a String.
|
|
When a newline is received, the loop prints the string and
|
|
clears it.
|
|
|
|
A good test for this is to try it with a GPS receiver
|
|
that sends out NMEA 0183 sentences.
|
|
|
|
Created 9 May 2011
|
|
by Tom Igoe
|
|
|
|
This example code is in the public domain.
|
|
|
|
http://www.arduino.cc/en/Tutorial/SerialEvent
|
|
|
|
*/
|
|
|
|
String inputString = ""; // a string to hold incoming data
|
|
boolean stringComplete = false; // whether the string is complete
|
|
|
|
void setup() {
|
|
// initialize serial:
|
|
Serial.begin(9600);
|
|
// reserve 200 bytes for the inputString:
|
|
inputString.reserve(200);
|
|
}
|
|
|
|
void loop() {
|
|
serialEvent(); //call the function
|
|
// print the string when a newline arrives:
|
|
if (stringComplete) {
|
|
Serial.println(inputString);
|
|
// clear the string:
|
|
inputString = "";
|
|
stringComplete = false;
|
|
}
|
|
}
|
|
|
|
/*
|
|
SerialEvent occurs whenever a new data comes in the
|
|
hardware serial RX. This routine is run between each
|
|
time loop() runs, so using delay inside loop can delay
|
|
response. Multiple bytes of data may be available.
|
|
*/
|
|
void serialEvent() {
|
|
while (Serial.available()) {
|
|
// get the new byte:
|
|
char inChar = (char)Serial.read();
|
|
// add it to the inputString:
|
|
inputString += inChar;
|
|
// if the incoming character is a newline, set a flag
|
|
// so the main loop can do something about it:
|
|
if (inChar == '\n') {
|
|
stringComplete = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
|