LED BUILTIN
De ArduWiki
Revisión del 17:08 23 jun 2018 de Lucario448 (Discusión | contribuciones)
Contenido
Descripción
Identifica el LED a bordo. En prácticamente todo Arduino, esta en el pin 13 (ese es el valor).
Sintaxis
pinMode(LED_BUILTIN, OUTPUT) digitalWrite(LED_BUILTIN, estado);
Parámetros
- estado
- debe ser HIGH o LOW.
Advertencias
Nada.
Ejemplos
Ejemplo del parpadeo con delay()
void setup(){ pinMode(LED_BUILTIN, OUTPUT) } void loop(){ digitalWrite(LED_BUILTIN, HIGH); daley(500); digitalWrite(LED_BUILTIN, LOW); delay(500); }
Vea también
- true / false
- HIGH / LOW
- INPUT / OUTPUT / INPUT_PULLUP
- PI
- DEC / BIN / HEX / OCT
- CHANGE / FALLING / RISING