How to Use Shift Register 74HC595 with Arduino Uno - Internet of Things

How to Use Shift Register 74HC595 with Arduino Uno

Arduino Uno Shift Register Tutorial

In ARDUINO we have 20 I/O pins, so we can program 20 pins of UNO to be used as either input or output. Although there are more pins on ATMEGA328P controller than on UNO, this is because while designing the board some pins are defaulted.

Now for some applications we need more than 30 pins, say if we want to design a 5x5x5 LED CUBE, so for this we need 5x5+5=30pins. For such cases we use serial to parallel converter chips or shift register. A shift register chip takes data from UNO board serially and gives output in 8 bit parallel configuration.

Components Required
Hardware: Arduino uno board, connecting pins, 220 resistor, LED (eight pieces), 74HC595 IC, bread board.
Sofware: Arduino nightly

Circuit Diagram and Working Explanation
Here we are going to send data in eight bit size through a single channel to shift register. The shift register takes the data serially and stores that data in its memory. Once the data is sent by the controller, we are going to send a command to shift register to show the data at the output, with this command the shift register puts out data parallel.

This output is shown by eight LED connected at output.

For connecting the shift register to Arduino UNO we need to do two things:
1.        pinMode();
2.        shiftOut(dataPin, clockPin, data);
First we need to set any three pins of UNO as output. Then we need to connect digital pin, clock pin and latch pin to these three output pins. After that we need to tell the UNO which pin of chip is connected to UNO board pins. This is done by simple writing in command shiftOut(dataPin, clockPin, data);”. The data here can be in binary or decimal or hexadecimal.  The eight bit information which needs to be sent is written in place of data”.

The data sent is done as:
Disable latch, this tells chip to not to show output for now.
For eight times we will send data with clock serially, so clock high low-data-clock low- and so on.
Enable latch, this tells chip to show eight bit data.

Working of ARDUINO with SHIFT REGISTER is explained step by step in C code given below:

       Demo & Code


How to Use Shift Register 74HC595 with Arduino Uno How to Use Shift Register 74HC595 with Arduino Uno Reviewed by XXX on สิงหาคม 27, 2560 Rating: 5

ไม่มีความคิดเห็น