// Encender y apagar un led con un tiempo de espera de 1 segundo
int LittleLED = 12;
void setup() {
pinMode(LittleLED, OUTPUT);
}
void loop() {
digitalWrite(LittleLED, HIGH);
delay(1000); // this speeds up the simulation
digitalWrite(LittleLED, LOW);
delay(1000); // this speeds up the simulation
}