Interface 28BYJ-48 Stepper Motor with ESP32 using MicroPython

In this tutorial, we will learn about the 28BYJ-48 stepper motor and how to interface it with the ESP32 using a UNL2003 driver and MicroPython. The 28BYJ-48 stepper motor is inexpensive and one of the most commonly used stepper motors out there. It comes with a UL2003 motor driver attached to it that is responsible for driving a stepper motor. The reason for using a driver is that the ESP32 GPIO pins can not provide enough driving current to a 28BYJ-48 stepper motor. The second important reason is that it protects ESP32 GPIO pins from getting damaged due to the high current requirement of a stepper motor than a maximum current that ESP32 GPIO pins can provide.

Interface 28BYJ-48 Stepper Motor with ESP32 using MicroPython

We have a similar guide for ESP32 and Raspberry Pi Pico using Arduino IDE and MicroPython, respectively:

Prerequisites

Before we start this lesson make sure you are familiar with and have the latest version of MicroPython firmware installed in your ESP32 board and have a running Integrated Development Environment (IDE) in which we will be doing the programming such as uPyCraft IDE or Thonny IDE.

If you want to use VS Code, you can follow this guide:

We will require the following components for this user guide:

Required Components

  • ESP32 development board
  • One 28BYJ-48 Stepper Motor with ULN2003 motor driver
  • External 5V power supply
  • Connecting Wires

Stepper Motors Introduction

Stepper motors are DC brushless and synchronous motors. They rotate in discrete steps of predefined values and are able to rotate both clockwise and anticlockwise. Unlike other DC motors, they provide a precise position control according to the number of steps per revolution for which the motor is designed. That means a complete one revolution of a stepper motor is divided into a discrete number of steps. They are commonly used in CNC machines, Robotics, 2D and 3D printers.

For this guide, we will use a 28BYJ-48 stepper motor and control it through ULN2003 motor driver.

28BYJ-48 Stepper Motor

This is the most commonly used stepper motor in low power industrial and most famously in hobbyist projects.

8BYJ-48 steper motor

28BYJ-48 is a uni-polar 5V stepper motor that takes electrical signals as input and rotates by converting these input signals into mechanical rotation. It consists of 4 stationary coils rated at +5V. These coils are known as a stator and make a ring around the rotor. Because of 5 volts operating voltage, we can easily drive this motor from any microcontroller such as ESP32, ESP8266, Arduino or TM4C123 Tiva Launchpad, etc. It has a 1/64 reduction gear set and therefore moves in precise 512 steps per revolution. These motors are silent in comparison to other DC motors and servo motors. You can achieve positional control easily without needing extra circuitry and components.

Stride Angle

This stepper motor has a stride angle of 5.625 degrees. That means 28BYJ-48 will complete one revolution in (360/5.625) 64 steps by taking one step at a time and in one step it covers a 5.625-degree distance. However, the stepper motor can also be used in full-step mode. In full-step mode, the angle of each step is 11.25 degrees. That means the motor completes its one revolution in 32 steps instead( 360/11.25).

Therefore, in order to move one step forward or backward, the coils of the motor energize with a particular sequence.

Steps per Revolution & Step Angle

The output shaft of this particular stepper motor is driven through a gear ratio of 64:1 that is also known as the speed variation ratio. This suggests that after the inside motor rotates 64 times then the shaft will complete one rotation.

Therefore we can conclude that:

  • In order to complete one full rotation of the shaft a total of 2048 steps will be required. This is known as the steps per revolution calculated by multiplying 32 and 64 (32×64=2048).
  • Moreover, this will enable the motor to have a step angle of 360º/2048 steps = 0.18º/step.

Specifications

  • It is a unipolar 5 pin coil with a rated DC voltage of 5V.
  • Has 4 phases with a stride angle of 5.625°/64.
  • Speed variation ratio is 1/64
  • The frequency of this stepper motor is 100Hz and insulated power is 600VAC/1mA/1s.
  • The half-step method is recommended for driving this stepper motor.
  • The value of pull in torque for a stepper motor is 300 gf-cm.

Pinout

The following figure shows the pinout diagram of 28BYJ-48 stepper motor. It consists of 5 pins. Out of these 5 pins, four pins are used to provide sequence logic to the coils and one pin is a +5 volts supply pin.

28BYJ-48 stepper motor coils pins

Pin Configuration Details

Pin NumberCoil NumberColour
14Blue
22Pink
33Yellow
41Orange
5VccRed

Coil 1-Coil 4: These are coils used to control the step sequence of the stepper motor. One end of each coil is connected with +5V and the other end will be connected with ULN2003 driver output.

Vcc: Used to apply +5 volt supply to the stepper motor. This voltage appears across the coils when a specific coil is ground through a control sequence.

ULN2003 Stepper Motor Driver Module

To use a 28BYJ-28 stepper motor with ESP32 board we will be required to attach it with the ULN2003 motor driver. This is necessary because the current consumption of 28BYJ-48 is around 240mA. That means the current required to drive coils by applying a sequence of control signals is also almost 200mA. GPIO pins of ESP development boards can not provide current of this magnitude. Therefore, we need a ULN2003 driver which translates low current output of ESP32 GPIO pins into higher current that meets the requirement of stepper motor control signals.

ULN2007 driver

The ULN2003 breakout board has high current and voltage than a single transistor and therefore it can drive a stepper motor easily by enabling our ESP board.

Recommneded reading: ULN2003 introduction, pinout, example and features

Stepper Motor Driver Module Pinout

ULN2003 driver IC consists of 7 Darlington pair transistor outputs. Each output can drive 500mA and 50V load. The input to each 7 Darlington pair transistor will be a signal from our microcontroller. To drive a stepper motor, this driver board uses only four input pins (IN1, IN2, IN3, and IN4).

The following diagram shows the ULN2003 motor driver board:

ULN2003 Stepper Motor driver board

Motor Connector Header is used to connect the stepper motor. It provides output from four Darlington pair transistors.

8BYJ-48 steper motor and ULN2003 Driver
PinDescription
1N1 to IN4These are input pins used to provide control signals to the stepper motor such as control sequences. We will connect these pins with the GPIO pins of ESP32.
Vcc and GNDVcc is a power supply pin and it is used to provide 5 volts power to the stepper motor from an external power source.

ESP32 does not have an onboard 5 volts signal. Therefore, we will need to provide an external power supply of 5V to the motor driver in order for it to work.

Additionally, the 28BYJ-48 stepper motor requires 240mA current to operate and it also consumes power at an idle condition. Therefore, it is recommended not to power the 28BYJ-48 stepper motor directly from any microcontroller instead use an external 5 volts power supply.

Interfacing ESP32 with 28BYJ-48 Stepper Motor and ULN2003 motor driver

To connect the ESP32 development board with the stepper motor and driver we will use the input pins IN1-IN4, the power supply pins, and the motor connection header. The 28BYJ-48 stepper motor already comes attached with the motor driver via the motor connector header. Now we will connect four GPIO pins of our ESP32 board with the input pins (IN1-IN4) of the driver. We have used the following GPIO pins to connect with each input pin.

ESP32 Motor Driver
GPIO26IN1
GPIO25IN2
GPIO33IN3
GPIO32IN4

You can use any suitable ESP32 GPIO pins as well.

Additionally, we will power the motor driver with a 5V external power supply. Both the grounds of the power supply and the ESP32 board will be in common.

The connection diagram is shown in the picture below.

ESP32 interfacing circuit with 28BYJ-48 stepper motor and uln2007
ESP32 with 28BYJ-48 stepper motor with driver connection diagram
ESP32 28BYJ-48 stepper motor and ULN2007 driver

ESP32 MicroPython Sketch Controlling 28BYJ-48 Stepper Motor

This MicroPython code will help us rotate the stepper motor in a clockwise direction. In order to do that we have to provide a sequence of values (1 (high state), 0 (low state)) to the stepper motor pins.

from machine import Pin
from time import sleep

IN1 = Pin(26,Pin.OUT)
IN2 = Pin(25,Pin.OUT)
IN3 = Pin(33,Pin.OUT)
IN4 = Pin(32,Pin.OUT)

pins = [IN1, IN2, IN3, IN4]

sequence = [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]]

while True:
    for step in sequence:
        for i in range(len(pins)):
            pins[i].value(step[i])
            sleep(0.001)

How the Code Works?

We will start by importing the Pin class from the machine module and the sleep class from the time module.

from machine import Pin
from time import sleep

Configure the GPIO pins connected with IN1, IN2, IN3, IN4 pins as output pins. This is done by using the Pin() method and passing the GPIO number as the first parameter and Pin.OUT as the second parameter.

Next, create an array called ‘pins’ consisting of the four output pins IN1, IN2, IN3 and IN4.

IN1 = Pin(26,Pin.OUT)
IN2 = Pin(25,Pin.OUT)
IN3 = Pin(33,Pin.OUT)
IN4 = Pin(32,Pin.OUT)

pins = [IN1, IN2, IN3, IN4]

Then create a 2d array called ‘sequence’ to hold the sequence of values that we will provide to the stepper motor pins. These values are 1 and 0 indicating a high state and a low state.

Note: Reversing this sequence of numbers will move the stepper motor in the anti-clockwise direction.

sequence = [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]]

Inside the infinite loop, we will step through the sequence and set each pin the value of the sequence in order. This will be done after a delay of 0.001 seconds to ensure proper movement of the stepper motor.

while True:
    for step in sequence:
        for i in range(len(pins)):
            pins[i].value(step[i])
            sleep(0.001)

Demonstration 28BYJ-48 Stepper Motor with ESP32 MicroPython

To see the demo of above code, copy this code to Thonny IDE and upload it to ESP32. Also, attach the stepper motor and ULN2003 with ESP32 according to the connection diagram above.

The stepper motor will move in a clockwise direction as shown in the video below:

Related tutorials and projects:

Leave a Comment