2.25 Rotary Encoder Module

Overview

In this lesson, you will learn about Rotary Encoder. A rotary encoder is an electronic switch with a set of regular pulses in strictly timing sequence. When used with IC, it can achieve increment, decrement, page turning and other operations such as mouse scrolling, menu selection, and so on.

Components Required

../_images/Part_two_25.png

Fritzing Circuit

In this example, we can connect the Rotary Encoder pin directly to the Mega 2560 Board pin, connect the GND of the Rotary Encoder to GND, 「+」 to 5V, SW to digital pin 4, DT to digital pin 3, and CLK to digital pin 2.

../_images/image207.png

Schematic Diagram

../_images/image208.png

Code

Note

  • You can open the file 2.25_rotaryEncoder.ino under the path of sunfounder_vincent_kit_for_arduino\code\2.25_rotaryEncoder directly.

  • Or copy this code into Arduino IDE.

You will see the angular displacement of the rotary encoder printed on Serial Monitor. When you turn the rotary encoder clockwise, the angular displacement is increased; when turn it counterclockwise, the displacement is decreased. If you press the switch on the rotary encoder, the readings will return to zero.

Code Analysis

When Rotary Encoder is used, the following situations of pin level will occur.

  1. When rotating the shaft, dtPin will go from high level to low level.

2. clkPin will remain high level when the shaft rotates clockwise, otherwise it goes low level.

  1. When the shaft is pressed, swPin will have low level.

From this, the program flow is shown on the right.

For detailed analysis of potential state change judgment, please refer to 1.10 State Change Detection.

../_images/image209.png

Phenomenon Picture

../_images/image210.jpeg