void setup() {
int x = 0 ; // creamos la variable x para almacenar numeros enteros
for ( x = 6 ; x < 14 ; x++) //x empieza por 6 y va aumentando de 1 en 1 hasta 13
{ pinMode(x , OUTPUT) ;
} //Cerramos bucle FOR
} // Cerramos funcion setup
void loop() {
for ( int y = 1 ; y < 9 ; y++) {
digitalWrite( y , HIGH) ;
delay (100) ;
digitalWrite( y , LOW);
delay (250) ;
} // Cerramos el bucle FOR
} //Cerramos funcion loop