Exercício 06 - Iluminação sequencial com LEDs



Código

-->
// Projeto 5 – Efeito de iluminação sequencial com LEDs
byte ledPin[] = {4, 5, 6, 7, 8, 9, 10, 11, 12, 13};      // cria um array para os pinos dos LEDs int ledDelay(65); // intervalo entre as alterações
int direction = 1; int currentLED = 0;
unsigned long changeTime;

void setup() {
for (int x=0; x<10 span="" style="letter-spacing: -.5pt;"> x++) {    // define todos os pinos como saída pinMode(ledPin[x], OUTPUT); }

changeTime = millis();
}

void loop() {
if ((millis() - changeTime) > ledDelay) {     // verifica se transcorreram ledDelay ms desde
// a última alteração
changeLED(); changeTime = millis();
}
}
void changeLED() {
for (int x=0; x<10 span="" style="letter-spacing: -1.15pt;"> x++) {   // apaga todos os LEDs digitalWrite(ledPin[x], LOW);

}



digitalWrite(ledPin[currentLED], HIGH); // acende o LED atual
currentLED += direction; // incrementa de acordo com o valor de direction
// altera a direção se tivermos atingido o fim if (currentLED == 9) {direction = -1;}
if (currentLED == 0) {direction = 1;}
}




-->