Diferencia entre revisiones de «serialAvailable()»
De ArduWiki
(→Comentarios) |
(→Ejemplos) |
||
Línea 23: | Línea 23: | ||
== Ejemplos == | == Ejemplos == | ||
− | Solo Arduino [[MEGA]] | + | Para Arduino [[UNO]] y [[NANO]]. |
+ | |||
+ | <syntaxhighlight lang="c++"> | ||
+ | void serialEvent(){ | ||
+ | //Comandos | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | == Ejemplo 2 == | ||
+ | Solo para Arduino [[MEGA]]. | ||
<syntaxhighlight lang="c++"> | <syntaxhighlight lang="c++"> |
Revisión actual del 00:14 19 jul 2019
Contenido
Descripción
Esta funcion se invoca cuando hay datos disponibles en el buffer del puerto serie.
Sintaxis
void serialEvent(){ //Comandos }
Parámetros
- comandos
- cualquier declaración válida
Retorno
Verdadero si hay datos en el buffer.
Comentarios
Advertencias
Ejemplos
void serialEvent(){
//Comandos
}
Ejemplo 2
Solo para Arduino MEGA.
void serialEvent1(){
//Comandos
}
void serialEvent2(){
//Comandos
}
void serialEvent3(){
//Comandos
}
Vea también
Referencias
- Comunicación serie - Enrique Crespo