Introduction: Taller Arduino + LED - Ideomaker

Intermitente LED / Parpadeo

OBJETIVO:

Programa ARDUINO para realizar las siguientes acciones: Encender un LED por 1 segundo

Apagar un LED por 1 segundo

Step 1: Paso1: Materiales

1 Arduino UNO

1 Protoboard

2 Cables Jumper (macho-macho)

1 LED

1 Resistencia de 1KΩ (Marrón-Negro-Rojo)

Step 2: Paso 2: Armado Del Ejercicio

Conectar LED en la PROTOBOARD

Conectar RESISTENCIA en pata larga (positiva) del LED

Conectar pata corta (negativa) a pin GND del Arduino

Conectar pata de RESISTENCIA en el pin 13 del Arduino

Step 3: Paso 3: Programación Thinkercad

Step 4: Programación En Arduino

Thinkercad genera de forma automatica el codigo en lenguaje C# para subir al Arduino.

VOID SETUP () Pin 13 se establece como salida OUTPUT dentro de la funcion SETUP()

VOID LOOP () Se establece el pin 13 con un valor HIGH (encender el LED)

Espera 1 segundo (1000 milisegundos)

Se establece el pin 13 con un valor HIGH (encender el LED)

Espera 1 segundo (1000 milisegundos)

void setup()
{

pinMode(13, OUTPUT);

}

void loop()

{

digitalWrite(13, HIGH);

delay(1000); // Esperar 1000 Millisegundos = 1 Segundo

digitalWrite(13, LOW);

delay(1000); // Esperar 1000 Millisegundos = 1 Segundo

}