//**************************************************************// // Name : shiftOutCode, Hello World // Author : Carlyn Maw,Tom Igoe, David A. Mellis // Date : 25 Oct, 2006 // Modified: 23 Mar 2010 // Version : 2.0 // Notes : Code for using a 74HC595 Shift Register // // : to count from 0 to 255 //**************************************************************** //Pin connected to ST_CP of 74HC595 int latchPin = 8; //Pin connected to SH_CP of 74HC595 int clockPin = 12; ////Pin connected to DS of 74HC595 int dataPin = 11; // valeurs envoyées au registre pour afficher les leds int mesValeurs[] = {12, 91, 94, 108, 118, 119, 28, 127, 126, 63}; void setup() { //set pins to output so you can control the shift register pinMode(latchPin, OUTPUT); pinMode(clockPin, OUTPUT); pinMode(dataPin, OUTPUT); } // void loop() { for (int i=0; i<10; i++) { affDigit(mesValeurs[i]); } } void affDigit(int nombre) { // take the latchPin low so // the LEDs don't change while you're sending in bits: digitalWrite(latchPin, LOW);// on peut mettre HIGH et LOW plus bas // shift out the bits: shiftOut(dataPin, clockPin, MSBFIRST, nombre); //take the latch pin high so the LEDs will light up: digitalWrite(latchPin, HIGH);// on peut mettre LOW et HIGH plus haut // pause before next value: delay(500); }