1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
//Se asigna cada componente a un pin. const int led[] = { 9, 10 ,11 ,12, 13 }; void setup(){ // Se configuran los pines como salidas. for ( int i=0; i<=4; i++ ){ pinMode( led[i],OUTPUT); }; }; void loop(){ // Se recorre un bucle encendiendo los leds por orden del pin 9 al 13. for ( int i=0; i<=4; i++ ){ digitalWrite( led[i],HIGH); // Para que todos los leds se enciendan de forma homogénea se restan unos milisegundos al led 0 y al 4. if ( i == 0 ){ delay(50); } else{ delay(120); }; digitalWrite( led[i],LOW); }; // Se repite el bucle pero en sentido contrario. for ( int i=4; i>=0; i-- ){ digitalWrite( led[i],HIGH); if ( i == 4 ){ delay(50); } else{ delay(120); }; digitalWrite( led[i],LOW); }; }; |