Arduino Based LED Chaser using Rotary Encoder

Arduino LED Chaser (1)

In this project we are going to interface a ROTARY ENCODER with ARDUINO.  ARDUINO UNO is an ATMEGA controller based development board designed for electronic engineers and hobbyists. In ARDUINO we have 20 I/O pins, so we can program 20 pins of UNO to be used as either input or output.

Arduino LED Chaser (1)

ROTARY ENCODER is used to know the position of movement and angular movement of a motor or axis. It’s a three terminal device usually, with power and ground pins there are total 5 terminals. A ROTARY ENCODER module is shown below.Rotary Encoder (1)

The pins of a rotary encoder are:

  • Ground
  • Positive connected to +5V
  • Output signal A pin
  • Output signal B pin
  • Clock pin or common pin

The ENCODER provides pulses representing the change in the shaft position for the systems to understand. Consider a ROTARY ENCODER is powered up and the shaft is moved.Output Signal Format (1)

As shown in above table, consider the shaft is moved clock wise. With this there will be Falling Edge at the A terminal then at B terminal.

Consider the shaft is moved Anti clock wise. With this there will be Falling Edge at the B terminal then at A terminal.

This edge will occur once for 360/20 = 18 degrees (This is for a Encoder with 20 position, this changes from type to type, higher the count greater the accuracy).

With both above conditions, we can get direction and degree of rotation. Thus we get required parameters for getting the position of a shaft.

Components Required

Hardware: Arduino uno board, connecting pins, 220Ω resistor, LED (eight pieces), 1KΩ resistor, 220Ω resistor (2pieces), 100nF capacitor (2 pieces ), bread board.

Software: Arduino nightly

Circuit Diagram and Working Explanation

The capacitors here are for neutralizing the contact bouncing effect in ENCODER. Without those capacitors there will be some serious problems in position reading.

When the shaft is moved there will be time difference between two output pins output. The Arduino UNO will recognize this time difference for clockwise of Anti clock wise rotation.

Read more: Arduino Based LED Chaser using Rotary Encoder

Leave a Comment

Your email address will not be published. Required fields are marked *