LED BUILTIN
De ArduWiki
Contenido
Descripción
Identifica el LED a bordo. En prácticamente todo Arduino, está 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