In this tutorial we’ll be using the 74HC595 8 Bit Shift Register, and this is what we'll be making;
Parts Required:
Arduino Uno (Or Arduino compatible clone)
Jumper Wires (Various colours and lengths)
1x 74HC595 8 Bit Shift Register
1x Breadboard
8x 220 Ohm Resisters
Remove these ads by
Signing Up








































Visit Our Store »
Go Pro Today »




i am gonna rewrite it so you can use it with only 2 wires
The following code works with two 595s. Be sure to connect the overflow pin of the first 595 to the data in pin of the second and connect the clock and latch pins together.
HTH,
von Biffo.
/*
A simple 16 LED chaser using two 74HC595N serial in/parallel out shift registers.
This sketch causes one of sixteen LEDs to be lit in turn moving up and down the display.
By Baron von Biffo
28th April 2012.
*/
// setup the data, latch and clock pins for the 74HC595.
int dataPin = 2;
int latchPin = 3;
int clockPin = 4;
void setup(){
// Set the data, latch and clock pins to output mode.
pinMode(clockPin, OUTPUT);
pinMode(dataPin, OUTPUT);
pinMode(latchPin, OUTPUT);
}
void loop(){
// Setup array with the individual LED positions. Decimal is easier to use than binary.
unsigned int displayLED[] = {0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768};
// Setup two 8 bit bytes to hold the data for each 595.
uint8_t low_byte;
uint8_t high_byte;
// Set length of time to display each LED.
int pause = 45;
// Loop control variable
int count;
// Count up loop.
for(count = 1; count < 16; count++){
// Read the decimal value from the array. Use bitwise And with OxFF for the low byte
// and shift 8 bits right for the high byte.
//
// I learned this from Korman at http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1285651171
//
low_byte = displayLED[count] & 0xff;
high_byte = (displayLED[count] >> 8);
// set the latch pin low prior to shifting out the data.
digitalWrite(latchPin, LOW);
// Shift out the data. The first shiftout puts the high byte into the first 595.
// The second shiftout shifts the high byte from the first 595 to the second and
// shifts the low byte into the first 595.
shiftOut(dataPin, clockPin, MSBFIRST, high_byte);
shiftOut(dataPin, clockPin, MSBFIRST, low_byte);
// Display the data by setting the latch pin high.
digitalWrite(latchPin, HIGH);
// Pause for the number of miliseconds determined by the 'pause' variable.
delay(pause);
}
//Count down loop. Same as the count up loop but moves in the opposite direction.
for(count = 16; count > 0; count--){
low_byte = displayLED[count] & 0xff;
high_byte = (displayLED[count] >> 8);
digitalWrite(latchPin, LOW);
shiftOut(dataPin, clockPin, MSBFIRST, high_byte);
shiftOut(dataPin, clockPin, MSBFIRST, low_byte);
digitalWrite(latchPin, HIGH);
delay(pause);
}
}
I guess you don't need a separate latch pin for each chip so in effect you seem to be getting 8 outputs for every pair of normal pins, with 1 extra pin for latching. That's potentially a lot of outputs!
Only question - how do you know which '595 you are writing to? Maybe it's clear from the code but I missed that if so.
It occurs to me that a shift register has just the right number of outputs to control a seven-segment+decimal LED display.... wouldn't take a whole lot of code to write a library that would output any number of digits to daisy-chained 7-segment displays with a shift register attached to each.
I may have to try that.
Also, I am sure that someone in the Arduino community has in fact written a library to interface the '595 and 7-Segment displays.
There probably is a library for this but I'm just starting out with micro-controllers (you might have guessed) so I might just make it a project anyway.....
Thanks for all your help.
i dont think you can send 16 bits at once either. eg B1111111111111111
due to the arduino language not having a consistent defined for anything over 8 bit. (This may have changed for the 1.0 IDE)
if i had 2 shift's i would send like so
shiftout(reg2);
shiftout(reg1);
digitalWrite(latchPin, HIGH);
note this is not working code just to show how it works.
3 shifts? just add the last shift first like so
shiftout(reg3);
shiftout(reg2);
shiftout(reg1);
digitalWrite(latchPin, HIGH);
HTH,
I used exactly that type of code and it works great. When I have a minute I'll write it up as an 'ibble.
There is a ShiftOut tutorial on the arduino site that's very helpful for these things.
I was sending 00000011 instead of B00000011.
I ended up converting the binary to base-10 and sending that.
After reading this instruct I see i needed to add a B to the binary.
thanks
I just finished learning about these from a different source and making a Connect 4 clone.
Just some advice, if any one having issues if LEDs flickering when they are not supposed to you might want to add a .1uF capacitor between the Vcc(pin 16) and ground.
I need to figure something out to do with the extra 7 chips I have lying around