PROYECTO 1 : PARAPADEO ( BLINKING )


 La práctica consiste en crear un programa que haga las siguientes acciones:

a) Activar el PIN 12.
b) Encender un LED conectado al PIN 12 durante 3 segundos.
c) Apagarlo durante 1 segundo.
d) Dos parpadeos rápidos consecutivos. 




void setup () {
pinMode(12,OUTPUT);
}
void loop(){

digitalWrite(12,HIGH);
delay(3000)
digitalWrite(12,LOW);
delay(1000);
digitalWrite(12,HIGH);
delay(500);
digitalWrite(12,LOW);
delay(500);
digitalWrite(12,HIGH);
delay(500);
digitalWrite(12,LOW);
delay(500);
}





Comentarios

Entradas populares de este blog

TABLA INFORMÁTICA SOBRE BTS

MI OPINIÓN SOBRE "CAÍDA EN PICADO" UN CAPÍTULO DE LA SERIE BLACK MIRROR Y UN ARTICULO RELACIONADO CON ESO