How to interface Stepper Motor with PIC18F4550 Microcontroller- (Part 13/25)

Summary of How to interface Stepper Motor with PIC18F4550 Microcontroller- (Part 13/25)


This article explains how to interface a unipolar stepper motor with a PIC18F4550 microcontroller. It details the motor's construction, including four stators and six wire ends, and describes the sequential voltage signals required for rotation. The project utilizes a C program to send specific binary patterns (1110, 1101, 1011, 0111) via PortB to control the motor steps. While the microcontroller can drive the motor directly, using a ULN2003 driver is recommended for better efficiency.

Parts used in the Stepper Motor Interface Project:

  • Unipolar Stepper Motor
  • PIC18F4550 Microcontroller
  • ULN2003 Driver (Optional)
  • 12V Power Supply
  • PortB Pins

Stepper Motor is a brushless, synchronous DC motor which divides a full rotation into a number of steps. For detailed information on working, types and stepping modes, refer the article on Stepper Motors. Here the operation of a unipolar Stepper motor with PIC18F4550 microcontroller has been explained.

As stated earlier, a Stepper motor rotates step by step. Each stepper motor has a defined step angle which is the minimum degree of rotation in a single step. This step angle depends on the internal construction of the motor. If a stepper motor has a step angle of 1.8°, then it would need 200 steps for a complete circular rotation. For control operation, construction and stepping modes, refer the article on Stepper Motors.
 
The stepper motor consists of a Rotor and four Stators. The stators are rounded with center-taped winding. The center-taped terminals are known Common terminals. Thus a unipolar stepper motor consists of total 6 wire-ends (four wires for coils and two for the common ends).
How to interface Stepper Motor with PIC18F4550 Microcontroller- (Part 13 25)
 
The COMs are connected with +12V which is the power supply to drive the stepper motor. To rotate the Rotor, zero voltage is provided at coil-ends one by one in a sequential manner. (Based on this sequence, stepper motors have different stepping modes which are explained in the article on Stepper Motor)
 
The sequential voltage signals are provided by the PIC microcontroller. A repetitive sequence of 1110, 1101, 1011 and 0111 is sent by PIC18F4550 to its PortB pins to rotate the Stepper motor.
 
Although this PIC microcontroller can provide enough output current to drive the stepper motor, but its becomes more efficient by employing a current driver between the controller and motor. For this purpose, sometimes ULN2003 is used to drive the stepper motor. Check interfacing Stepper motor with 8051 using ULN2003 for reference.
 

Project Source Code

###


// Program to Interface Stepper Motor with PIC18F4550 Microcontroller
void main()
{
unsigned int i=0;
TRISB=0; // Set PortB as output port
while(1)
{
LATB=0x07; // To send 1110 at PortB
Delay_ms(20);

LATB=0x0B; // To send 1101 at PortB
Delay_ms(20);

LATB=0x0D; // To send 1011 at PortB
Delay_ms(20);

LATB=0x0E; // To send 0111 at PortB
Delay_ms(20);
}
}

###

Source: How to interface Stepper Motor with PIC18F4550 Microcontroller- (Part 13/25)

Quick Solutions to Questions related to Stepper Motor Interface Project:

  • What is a stepper motor?
    A brushless synchronous DC motor that divides a full rotation into a number of steps.
  • How many wires does a unipolar stepper motor have?
    A unipolar stepper motor consists of total 6 wire-ends.
  • How do you rotate the rotor of a stepper motor?
    Zero voltage is provided at coil-ends one by one in a sequential manner.
  • What sequence does the PIC18F4550 send to rotate the motor?
    A repetitive sequence of 1110, 1101, 1011 and 0111 is sent to its PortB pins.
  • Why is a current driver like ULN2003 used?
    It becomes more efficient to employ a current driver between the controller and motor.
  • How is PortB configured in the source code?
    TRISB=0 sets PortB as an output port.
  • What happens if a stepper motor has a step angle of 1.8 degrees?
    It would need 200 steps for a complete circular rotation.
  • Where are the COM terminals connected?
    The COMs are connected with +12V which is the power supply to drive the stepper motor.

About The Author

Muhammad Bilal

I am a highly skilled and motivated individual with a Master's degree in Computer Science. I have extensive experience in technical writing and a deep understanding of SEO practices.