Control Stepper Motor Using Arduino

Posted by: Chao Category: Sensing and Actuating Tags: , Comments: One Comment

Control Stepper Motor Using Arduino

The stepper motor has five leads, and we will be using both halves of the L293D this time. This means that there are a lot of connections to make on the breadboard.

The motor has a 5-way socket on the end. Push jumper wires into the sockets to allow the motor to be connected to the breadboard.

You can find these products here:

See the first image how the breadboard connection.

The Stepper library is included in newer distributions of the Arduino IDE – you may need to upgrade.

The following sketch uses the Serial Monitor, so once the sketch is installed and running, open the Serial Monitor and enter a number of ‘steps’. Try a value of about 500, this should cause the motor to turn through about 360 degrees. Enter -500 and it will turn back in the reverse direction.

[c]/*
Stepper Motor control
*/

#include Stepper.h;

int in1Pin = 12;
int in2Pin = 11;
int in3Pin = 10;
int in4Pin = 9;

Stepper motor(768, in1Pin, in2Pin, in3Pin, in4Pin);

void setup()
{
pinMode(in1Pin, OUTPUT);
pinMode(in2Pin, OUTPUT);
pinMode(in3Pin, OUTPUT);
pinMode(in4Pin, OUTPUT);
while (!Serial);
Serial.begin(9600);
motor.setSpeed(20);
}

void loop()
{
if (Serial.available())
{
int steps = Serial.parseInt();
motor.step(steps);
}
}
[/c]
As you might expect, there is an Arduino library to support stepper motors. This makes the process of using a motor very easy.

After including the ‘Stepper’ library, the four control pins ‘in1’ to ‘in4’ are defined.

To tell the Arduino Stepper library which pins are connected to the motor controller, the following command is used:

Stepper motor(768, in1Pin, in2Pin, in3Pin, in4Pin);

The first parameter is the number of ‘steps’ that the motor will take to complete one revolution. The motor can be moved by one step at a time, for very fine positioning.

Serial communications is then started, so that the Arduino is ready to receive commands from the Serial Monitor.

Finally the following command sets the speed that we wish the stepper motor to move, when we subsequently tell it how many steps to rotate.

motor.setSpeed(10);

The ‘loop’ function is very simple. It waits for a command to come in from the Serial Monitor and converts the text of the number sent into an int using ‘parseInt’. It then instructs the motor to turn that number of steps.

Stepper motors use a cogged wheel and electro magnets to nudge the wheel round a ‘step’ at a time.


steppers

The motor we are using has 48 steps, but then the motor also incorporates a reduction gearbox of 1:16 that means that it needs 16 x 48 = 768 steps.

In this lesson, we do not use the common Red connection. This connection is only provided if you are using a different type of drive circuit that does not allow the current in each coil to be reversed. Having a center connection to each coil means that you can either energise the left or right side of the coil, and get the effect of reversing the current flow without having to use a circuit that can reverse the current.

Since we are using a L293D that is very good at reversing the current, we do not need this common connection, we can supply current in either direction to the whole of each of the coils.

Try changing the command that sets the speed of the stepper motor:

motor.setSpeed(20);

to a lower value (say 5) upload the sketch and notice that the stepper turns more slowly.

Now try and find the maximum speed for the stepper by increasing the speed above 20. After a certain point, you will find that the motor does not move at all. This is because it just cannot keep up with the stream of pulses asking it to step.

Try disconnecting the orange and pink leads of the stepper. It should still turn, but you will notice that it is weaker, as it does not have both coils working to push the motor around.

 

Share this post

Comment (1)

  • poulbran Reply

    Now for Micro stepping a special driver board is key.

    September 12, 2016 at 8:42 am

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.