Introduction: Arduino 16 LEDs Using Two 74HC595 Shift Registers (unlimited Pins)

This is my first instructable, hope you will like it. I have been playing around with LEDs for a while and I realized that I am pretty much limited with Arduino pins and can not make huge projects which requires a lot of pins. This is small project with main focus to drive LEDs by using Arduino pins as less as possible and it demonstrates how to add infinite number of pins. In this particular project the 16 LEDs are driven with just only 3 Arduino pins. The key element is shift register. Each 74HC595 shift register can drive up to 8 LEDs and by daisy chaining registers it is possible to extend Arduino 3 pins to infinite number (for great number of registers, there could be problem with clock which is required for shift registers).

Step 1: Components

- Arduino UNO (x1)

- 74HC595 shift register (x2)

- LEDs (x16)

- 220omh resistors (x16)

- A lot of wires

- Two breadborads (one with 400 pins and other with 830)

- Potentiometer, to control the brightness (optional)

Step 2: Circuit

Make the circuit (see above) and connect the first shift register as following:

- GND (pin 8) to ground

- Vcc (pin 16) to 5V

- OE (pin 13) to ground

- MR (pin 10) to 5V

- DS (pin 14) to Arduino pin 11

- SH_CP (pin 11) to Arduino pin 12

- ST_CP (pin 12) to Arduino pin 8

Connect the second shift register exactly the same, but connect the DS (pin 14) to first register pin 9. After that connect pins: 1, 2, 3, 4, 5, 6, 7 and15 from both registers to LEDs. This connection makes all the pins always active and addressable, however when the Arduino is powered up some of the LEDs may be turned on. Solution for this is to connect MR (pin 10) and OE (pin 13) to Arduino directly, but it this way you have to sacrifice 2 Aurduino pins.

To add more shift registers connect them like the second register. Always connect MR and OE pins directly to Arduino and DS pin to previous register.

If you want to regulate the brightness of LEDs then connect potentiometer as shown in picture above to control resistance for all LEDs. However it is optional and you can get along without it.

Step 3: The Code

The existing codes are designed to limited number of shift registers and there is no universal function/method to do it. As a software developer it is unacceptable for me and I am used to make everything as dynamic as possible with no limitations. I redesigned the existing code samples to allow you to use unlimited number of shift registers. See code below:

int numOfRegisters = 2;
byte* registerState;

void setup() {
//Initialize array

registerState = new byte[numOfRegisters];

for (size_t i = 0; i < numOfRegisters; i++) {

registerState[i] = 0;

}

//... setup

}

void regWrite(int pin, bool state) {
//Determines register int reg = pin / 8;

//Determines pin for actual register

int actualPin = pin - (8 * reg);

//Begin session

digitalWrite(latchPin, LOW);

for (int i = 0; i < numOfRegisters; i++) {

//Get actual states for register

byte* states = ®isterState[i];

//Update state

if (i == reg) {

bitWrite(*states, actualPin, state);

}

//Write

shiftOut(dataPin, clockPin, MSBFIRST, *states);

}

//End session

digitalWrite(latchPin, HIGH);

}

Step 4: The Final Code

I posted the full source code on github, because here it would be unreadable:

https://github.com/jr2002008/Arduino-74HC595-shift-registers/blob/master/ArduinoLEDsWithShiftRegisters/ArduinoLEDsWithShiftRegisters.ino

In the final code I added several effects for those 16 LEDs. The effects are demonstrated in the video above. If you want to add more LEDs, connect more shit registers as described previously and change the value of numOfRegisters in the code (Also adjust logic for effects).

You can also use this code not for just LEDs only, if you simply want more pins for your Arduino use the regWrite(int pin, bool state) function to write state for any pin and there is no limit how much shift registers you are using, just change the value of numOfRegisters and every thing else is automated.