Arduino Nano: Rotary Encoder With Visuino

by BoianM in Circuits > Arduino

10230 Views, 19 Favorites, 0 Comments

Arduino Nano: Rotary Encoder With Visuino

Arduino Nano: Rotary Encoder with Visuino

The Rotary encoders are very useful precise rotation sensors, also often used as user controlled input devices instead of potentiometers. They are easy to connect to Arduino, and with the help of Visuino - an easy to use graphical development environment for Arduino, they are equally easy to program.

Components

56775f0a937ddbde110012ba.jpeg
  1. One Arduino compatible board (I use Arduino Nano, because I have one, but any other will be just fine)
  2. One Rotary Encoder module I got from this cheap 37 sensors set.
  3. 4 Female-Female jumper wires

Connect the Rotary Encoder to Arduino

578aa7c74936d46f86000323.jpeg
578aa7fd67400c1375000f02.jpeg
578aa83e937ddbe088000548.jpeg
578aa7cd67400c1375000f01.jpeg
  1. Connect Ground(Black wire), Power(Red wire), Direction(Brown wire), and Clock(White wire) to the Rotary Encoder Module (Picture 1)
  2. Connect the other end of the Power wire(Red wire) to the 5V power pin of the Arduino board(Picture 2)
  3. Connect the other end of the Ground wire(Black wire) to Ground pin of the Arduino board(Picture 2)
  4. Connect the Clock wire(White wire) to Digital pin 2 of the Arduino board(Picture 3)
  5. Connect the Direction wire(Brown wire) to Digital pin 3 of the Arduino board(Picture 3)
  6. Picture 4 shows where are the Ground, 5V Power, Digital 2 and Digital 3 pins of the Arduino Nano.

Start Visuino, and Select the Arduino Board Type

SelectBoard.png
SelectBoard.png

To start programming the Arduino, you will need to have the Arduino IDE installed from here: http://www.arduino.cc/ .

Make sure that you install 1.6.7 or higher, otherwise this Instructable will not work!

The Visuino: https://www.visuino.com also needs to be installed.

  1. Start Visuino as shown in the first picture
  2. Click on the "Tools" button on the Arduino component (Picture 1) in Visuino
  3. When the dialog appears, select Arduino Nano as shown in Picture 2

In Visuino: Add and Connect Rotary Encoder Component

ComponentRotary.png
ComponentRotaryConnect1.png
ComponentRotaryConnect2.png
  1. Type "rota" in the Filter box of the Component Toolbox then select the "Rotary Encoder Sensor" component (Picture 1), and drop it in the design area
  2. Connect the "Out" pin of the Digital[ 2 ] channel of the Arduino component to the "Clock(A)" pin of the RotaryEncoderSensor1 (Picture 2)
  3. Connect the "Out" pin of the Digital[ 3 ] channel of the Arduino component to the "Direction(B)" pin of the RotaryEncoderSensor1 (Picture 3)

In Visuino: Add and Connect Up/Down Counter Component

ComponentCounter.png
ComponentCounterConnect1.png
ComponentCounterConnect2.png
ComponentCounterConnect3.png
  1. Type "coun" in the Filter box of the Component Toolbox then select the "Up/Down Counter" component (Picture 1), and drop it in the design area
  2. Connect the "Up" pin of the RotaryEncoderSensor1 component to the "Up" pin of the UpDownCounter1 component (Picture 2)
  3. Connect the "Down" pin of the RotaryEncoderSensor1 component to the "Down" pin of the UpDownCounter1 component (Picture 3)
  4. Connect the "Out" pin of the UpDownCounter1 component to the "In" input pin of the Serial[ 0 ] channel of the Arduino component(Picture 4)

Generate, Compile, and Upload the Arduino Code

GenerateCtopped.png
ArduinoIDE.png
  1. In Visuino, Press F9 or click on the button shown on Picture 1 to generate the Arduino code, and open the Arduino IDE
  2. In the Arduino IDE, click on the Upload button, to compile and upload the code (Picture 2)

And Play...

56775d4c4936d4e54b0006af.jpeg
Terminal.png
VisuinoDiagramCrop.png

Picture 1 shows the completed and running project.

If you connect to the Arduino with Serial Terminal from the Arduino IDE or Visuino and then rotate the encoder back and forth, you will see in the terminal the value of the counter showing the encoder changes (Picture 2)

On Picture 3 you can see the complete Visuino diagram.

Congratulations! You have learned how to connect Rotary Encoder to Arduino, and how to read it.

Also attached is the Visuino project, that I created for this Instructable. You can download and open it in Visuino: https://www.visuino.com