Loading...

Tutorial.ShftOut11 History

Hide minor edits - Show changes to markup

March 24, 2010, at 08:40 AM by Tom Igoe -
Changed lines 5-8 from:

// Name : shiftOutCode, Hello World // // Author : Carlyn Maw,Tom Igoe, David A. Mellis // // Date : 25 Oct, 2006 // // Version : 1.0 //

to:

// Name : shiftOutCode, Hello World // Author : Carlyn Maw,Tom Igoe, David A. Mellis // Date : 25 Oct, 2006 // Modified: 23 Mar 2010 // Version : 2.0

Changed line 11 from:

// : to count from 0 to 255 //

to:

// : to count from 0 to 255

Added line 22:
Changed line 24 from:
  //set pins to output because they are addressed in the main loop
to:
  //set pins to output so you can control the shift register
Changed lines 31-32 from:
  //count up routine
to:
  // count from 0 to 255 and display the number 
  // on the LEDs
Changed lines 34-35 from:
    //ground latchPin and hold low for as long as you are transmitting
to:
    // take the latchPin low so 
    // the LEDs don't change while you're sending in bits:
Changed lines 37-39 from:
    shiftOut(dataPin, clockPin, MSBFIRST, numberToDisplay);   
    //return the latch pin high to signal chip that it 
    //no longer needs to listen for information
to:
    // shift out the bits:
    shiftOut(dataPin, clockPin, MSBFIRST, numberToDisplay);  

    //take the latch pin high so the LEDs will light up:
Added line 42:
    // pause before next value:
Added line 46:
March 24, 2010, at 08:37 AM by Tom Igoe -
Deleted line 20:
Changed line 30 from:
  for (int j = 0; j < 256; j++) {
to:
  for (int numberToDisplay = 0; numberToDisplay < 256; numberToDisplay++) {
Changed line 33 from:
    shiftOut(dataPin, clockPin, MSBFIRST, j);   
to:
    shiftOut(dataPin, clockPin, MSBFIRST, numberToDisplay);   
Changed line 37 from:
    delay(1000);
to:
    delay(500);
Changed line 40 from:

@]

to:

@]

June 21, 2009, at 05:08 AM by David A. Mellis -
Changed line 6 from:

// Author : Carlyn Maw,Tom Igoe //

to:

// Author : Carlyn Maw,Tom Igoe, David A. Mellis //

Changed lines 25-26 from:
to:
  pinMode(clockPin, OUTPUT);
  pinMode(dataPin, OUTPUT);
Changed lines 33-34 from:
    digitalWrite(latchPin, 0);
    shiftOut(dataPin, clockPin, j);   
to:
    digitalWrite(latchPin, LOW);
    shiftOut(dataPin, clockPin, MSBFIRST, j);   
Changed line 37 from:
    digitalWrite(latchPin, 1);
to:
    digitalWrite(latchPin, HIGH);
Deleted lines 40-85:

void shiftOut(int myDataPin, int myClockPin, byte myDataOut) {

  // This shifts 8 bits out MSB first, 
  //on the rising edge of the clock,
  //clock idles low

  //internal function setup
  int i=0;
  int pinState;
  pinMode(myClockPin, OUTPUT);
  pinMode(myDataPin, OUTPUT);

  //clear everything out just in case to
  //prepare shift register for bit shifting
  digitalWrite(myDataPin, 0);
  digitalWrite(myClockPin, 0);

  //for each bit in the byte myDataOut…
  //NOTICE THAT WE ARE COUNTING DOWN in our for loop
  //This means that %00000001 or "1" will go through such
  //that it will be pin Q0 that lights. 
  for (i=7; i>=0; i--)  {
    digitalWrite(myClockPin, 0);

    //if the value passed to myDataOut and a bitmask result 
    // true then... so if we are at i=6 and our value is
    // %11010100 it would the code compares it to %01000000 
    // and proceeds to set pinState to 1.
    if ( myDataOut & (1<<i) ) {
      pinState= 1;
    }
    else {	
      pinState= 0;
    }

    //Sets the pin to HIGH or LOW depending on pinState
    digitalWrite(myDataPin, pinState);
    //register shifts bits on upstroke of clock pin  
    digitalWrite(myClockPin, 1);
    //zero the data pin after shift to prevent bleed through
    digitalWrite(myDataPin, 0);
  }

  //stop shifting
  digitalWrite(myClockPin, 0);

}

November 23, 2006, at 12:26 PM by David A. Mellis - removing spurious periods in code (that give compile errors)
Changed line 46 from:

..//internal function setup

to:
  //internal function setup
Changed lines 52-53 from:

. //clear everything out just in case to . //prepare shift register for bit shifting

to:
  //clear everything out just in case to
  //prepare shift register for bit shifting
November 01, 2006, at 07:30 PM by Carlyn Maw -
Changed lines 1-2 from:
to:
Changed line 86 from:

@]

to:

@]

November 01, 2006, at 07:29 PM by Carlyn Maw -
Added line 3:

[@

Added line 86:

@]

November 01, 2006, at 07:29 PM by Carlyn Maw -
Added lines 1-84:

Back to ShiftOut Tutorial?

//**************************************************************// // Name : shiftOutCode, Hello World // // Author : Carlyn Maw,Tom Igoe // // Date : 25 Oct, 2006 // // Version : 1.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;

void setup() {

  //set pins to output because they are addressed in the main loop
  pinMode(latchPin, OUTPUT);

}

void loop() {

  //count up routine
  for (int j = 0; j < 256; j++) {
    //ground latchPin and hold low for as long as you are transmitting
    digitalWrite(latchPin, 0);
    shiftOut(dataPin, clockPin, j);   
    //return the latch pin high to signal chip that it 
    //no longer needs to listen for information
    digitalWrite(latchPin, 1);
    delay(1000);
  }

}

void shiftOut(int myDataPin, int myClockPin, byte myDataOut) {

  // This shifts 8 bits out MSB first, 
  //on the rising edge of the clock,
  //clock idles low

..//internal function setup

  int i=0;
  int pinState;
  pinMode(myClockPin, OUTPUT);
  pinMode(myDataPin, OUTPUT);

. //clear everything out just in case to . //prepare shift register for bit shifting

  digitalWrite(myDataPin, 0);
  digitalWrite(myClockPin, 0);

  //for each bit in the byte myDataOut…
  //NOTICE THAT WE ARE COUNTING DOWN in our for loop
  //This means that %00000001 or "1" will go through such
  //that it will be pin Q0 that lights. 
  for (i=7; i>=0; i--)  {
    digitalWrite(myClockPin, 0);

    //if the value passed to myDataOut and a bitmask result 
    // true then... so if we are at i=6 and our value is
    // %11010100 it would the code compares it to %01000000 
    // and proceeds to set pinState to 1.
    if ( myDataOut & (1<<i) ) {
      pinState= 1;
    }
    else {	
      pinState= 0;
    }

    //Sets the pin to HIGH or LOW depending on pinState
    digitalWrite(myDataPin, pinState);
    //register shifts bits on upstroke of clock pin  
    digitalWrite(myClockPin, 1);
    //zero the data pin after shift to prevent bleed through
    digitalWrite(myDataPin, 0);
  }

  //stop shifting
  digitalWrite(myClockPin, 0);

}




Bookmark and Share