top of page

Chenillard à LEDS

Matériel: 

 

- 9 Leds

- 9 résistances 220 Ω

- 10 fils

int n=0, x=0, y=0;

 

void setup() {

  for(n; n <=9; n++){

  pinMode(n, OUTPUT);

  }

}

 

void loop()

  {

  for(x; x <=9; x++)

  {

    digitalWrite(x, 1);

    delay(100);

  }

 

  for(y; y <=9; y++)

  {

    digitalWrite(y, 0);

    delay(100);

  }

  x=0;

  y=0;

  

}

Explication: Le programme va allumer les leds une par une puis les éteindres une par une. Cela en boucle. Mettre des resistances de 220ohm.

PayPal ButtonPayPal Button
bottom of page