martes, 25 de abril de 2017
//El pin 13 tiene conectado un LED en la mayoria de las tarjetas arduino
// ponle un nombre
int led = 13;
int led2= 12;
int led3= 8;
// la rutina de configuracion corre solo una vez
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// la rutina loop se repite una y otra vez
void loop() {
digitalWrite(led, HIGH); // enciende el LED (HIGH es el nivel de voltaje)
delay(1000); // espera medio segundo
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
digitalWrite(led2, HIGH); // enciende el LED (HIGH es el nivel de voltaje)
delay(1000); // espera medio segundo
digitalWrite(led2, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
digitalWrite(led3, HIGH); // enciende el LED (HIGH es el nivel de voltaje)
delay(1000); // espera un segundo
digitalWrite(led3, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Suscribirse a:
Enviar comentarios (Atom)
No hay comentarios:
Publicar un comentario