top of page

Safari browser sometimes has issues displaying images...

I.e: *you have to click on the images to see them...

For a better browsing experience on Brainy-Bits

Please use Chrome, Edge or Firefox browser.

  • Writer's pictureBrainy-Bits

A Rotary Encoder that’s Always on the Money!



OVERVIEW


Today we will look at the‘Bourns EAW’ absolute contacting encoder, which uses a mechanical way instead of a purely digital one like the KY-040.

 

PARTS USED


Bourns EAW Contacting Encoder


EasyDriver Stepper Driver


Stepper Motor NEMA 17


These are Amazon affiliate links...

They don't cost you anything and it helps me keep the lights on

if you buy something on Amazon. Thank you!

 

QUICK OVERVIEW


The ‘Bourns EAW’ as many advantages compared to the KY-040:

  • It has 128 rotary positions

  • Uses a mechanical way to know where it is, so no debounce code is needed

  • It’s fairly cheap compared to other encoders like it (‘$7)

How does it work?

Inside the Bourns encoders are 8 contactor tracks (which are connected to the 8 external pins on the encoder), and depending on where the shaft of the encoder is, those tracks convert to a specific binary code (00010001).


So for every 128 positions a different binary code can be obtained to know ‘exactly’ where the encoder is.


Here’s an sample of some of the positions and the corresponding binary results:



So no matter where the shaft is rotated to, we can know for certain where it is just by reading the 8 pins and matching that result to the binary map above.


Since it uses a mechanical way to know where it is, this type of encoder will always return the same results, even when the power is removed from the Arduino.


One downside of using this encoder might be that it requires 8 Pins to connect to an Arduino, compared to only 2 Pins when using the KY-040.


** But we will see in a future tutorial how to reduce the number of pins needed…  Stay tuned!

 

CONNECTIONS


In this tutorial were using the ‘Bourns EAW’ encoder to control a Stepper Motor.


Were also using an I2C LCD to display the encoder values and number of steps taken by the Stepper Motor. 


LCD Connections: 5v and Ground from the Arduino and A4 – A5 to SDA and SCL of the backpack

EasyDriver Connections: Pin 10 and 11 of Arduino to DIR and STEP pin of the driver Ground of Arduino to Ground of driver The EasyDriver is connected to a 12V power supply


Bourns EAW connections: Pin 2 to 9 of Arduino connected to pin 1 to 8 of the encoder Ground of Arduino connected to a Common pin of the encoder

 

THE CODE


We are using a library created for the Bourns EAW encoder.


The library has many options to get values from the encoder, the most useful being:

  • Raw: this is the actual position of the encoder from 0 to 127, this will always be the same even if power is lost and restored.

  • Upost: same as Raw but starts at logical zero to 127, so everytime the Arduino is powered the value will be zero and is based on the Raw value.

  • Mpost: this is a multiturn value, that will start from zero when the Arduino is powered and can go from -32768 to 32768, this is the one we are using in this tutorial.


/* Control Stepper Motor with 'Bourns EAW' encoder
 
Created by Yvan / https://Brainy-Bits.com

This code is in the public domain...

You can: copy it, use it, modify it, share it or just plain ignore it!
Thx!
*/


#include <LiquidCrystal_I2C.h>  // I2C LCD Library by Francisco Malpartida https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home
#include <AccelStepper.h>  // AccelStepper Library https://www.arduinolibraries.info/libraries/accel-stepper


#define I2C_ADDR 0x27  // I2C address of typical I2C LCD Backpack

// LCD Pins to I2C LCD Backpack - These are default for HD44780 LCD's
#define Rs_pin 0
#define Rw_pin 1
#define En_pin 2
#define BACKLIGHT_PIN 3
#define D4_pin 4
#define D5_pin 5
#define D6_pin 6
#define D7_pin 7

// Create instance for LCD called: i2c_lcd
LiquidCrystal_I2C i2c_lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);


const int pinSTEP=11;  // STEP pin of EasyDriver connected to pin 11 of UNO
const int pinDIR=10;  // DIR  pin of EasyDriver connected to pin 10 of UNO

AccelStepper stepper(1, pinSTEP, pinDIR);  // Stepper setup

// Include the Bourns EAW Encoder library and maps
#include <ACE128.h>  // https://github.com/arielnh56/ACE128

#include <ACE128map12345678.h> // mapping for pin order 12345678

// Pin x of UNO connected to pin x of Encoder (example: UNO pin 2 connected to pin 1 of encoder, etc...)
ACE128 myACE(2,3,4,5,6,7,8,9, (uint8_t*)encoderMap_12345678);


int16_t multiturn_encoder_value;  // Variable to hold multiturn value of encoder (-32768 to 32767)


void setup() {
  i2c_lcd.begin (16,2); //  our LCD is a 16x2, change for your LCD if needed
  
  // LCD Backlight ON
  i2c_lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
  i2c_lcd.setBacklight(HIGH);
  
  i2c_lcd.clear(); // Clear the LCD screen

  stepper.setCurrentPosition(0);  // Set current position of stepper at startup to zero
  stepper.setMaxSpeed(1000.0);      // Set Max Speed of stepper
  stepper.setAcceleration(5000.0);  // Acceleration of stepper
  stepper.setSpeed(1000.0);  // Speed of stepper

  myACE.begin();    // initialize the encoder library
}


void loop() {

  multiturn_encoder_value = myACE.mpos();  // get multiturn value from encoder
  stepper.moveTo(multiturn_encoder_value); // set stepper new position to move to
    
  while (stepper.distanceToGo() != 0) {  // if stepper hasn't reached new position
    stepper.runSpeedToPosition();  // move the stepper until new position reached
  }

// Display the encoder multiturn and stepper position on LCD
  i2c_lcd.setCursor(0,0);
  i2c_lcd.print("Encoder: ");
  i2c_lcd.setCursor(9,0);
  i2c_lcd.print(multiturn_encoder_value);
  i2c_lcd.print("      ");
  i2c_lcd.setCursor(0,1);
  i2c_lcd.print("Stepper: ");
  i2c_lcd.setCursor(9,1);
  i2c_lcd.print(stepper.currentPosition()); 
  i2c_lcd.print("      ");  
}
 

CONCLUSION


For the price, this encoder is a really good option for many projects that requires accurate readings.


In this tutorial we didnt’ use the capability of the encoder to ‘remember’ it’s position after a power failure, but this could be a great option for some projects.


The KY-040 still has a place for systems that don’t require absolute accuracy, like for menu selection, but the Bourns EAW sure has a place for other circuits.


As many electronic components, you might not have a use for such an encoder right now, but it’s always good to know it exists and might be the solution for a future project!


Thank you for stopping by!

 

TUTORIAL VIDEO




 

DOWNLOAD


Copy and Paste the above code/sketch in your Arduino IDE software.


Link to the libraries used in this tutorial:



6,013 views

Recent Posts

See All

All my content is and will always be Free.

If you feel that my Videos / Tutorials are helping, and you would like to contribute...

 You can toss some coins in the Tip Jar via PayPal.

Select amount then click the “Donate” button.

bottom of page