Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes

Serial

serialEvent()

Description

Called when data is available. Use Serial.read() to capture this data.

NB : Currently, serialEvent() is not compatible with the Esplora, Leonardo, or Micro

Syntax

void serialEvent( ) {
//statements
}

Arduino Mega only:

void serialEvent1( ) {
//statements
} void serialEvent2( ) {
//statements
} void serialEvent3( ) {
//statements
}

Parameters

statements: any valid statements

See Also


Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.