DESAFIÓ! 3 LEDS
Realizamos un trabajo en el cual, hicimos una secuencia, en la cual los leds, titilaban juntos o por separado.
1) Titilan los 3 Led´s con un tiempo de 3 segundos.
2) Titilan el Led Rojo y Amarillo
4) Titila el Led Verde
5) Titilan el Led Verde y Amarillo
6) Titila el Led Verde
7) Titila el Led Amarillo
1) Titilan los 3 Led´s con un tiempo de 3 segundos.
2) Titilan el Led Rojo y Amarillo
4) Titila el Led Verde
5) Titilan el Led Verde y Amarillo
6) Titila el Led Verde
7) Titila el Led Amarillo
void setup() {
pinMode(1, OUTPUT);
pinMode(2, OUTPUT);
pinMode(3, OUTPUT);
pinMode(4, OUTPUT);
}
void loop() {
digitalWrite(1, HIGH);
delay(3000);
digitalWrite(1, LOW);
delay(3000);
digitalWrite(2, HIGH);
delay(3000);
digitalWrite(2, LOW);
delay(3000);
digitalWrite(3, HIGH);
delay(3000);
0 comentarios:
Publicar un comentario