8051 INTERFACING   

Online FREE !

                         

                                                                                                                   Stepper Motor

 

 

BASICS OF STEPPER MOTOR

Of all motors, step motor is the easiest to control. It's handling simplicity is really hard to deny - all there is to do is to bring the sequence of rectangle impulses to one input of step controller and direction information to another input. Direction information is very simple and comes down to "left" for logical one on that pin and "right" for logical zero. Motor control  is also very simple - every impulse makes the motor operating for one step and if there is no impulse the motor won't start. Pause between impulses can be shorter or longer and it defines revolution rate. This rate cannot be infinite because the motor won't be able to "catch up" with all the impulses (documentation on specific motor should contain such information). The picture below represents the scheme for connecting the step motor to microcontroller and appropriate program code follows.

The key to driving a stepper is realizing how the motor is constructed. A diagram shows the representation of a 4 coil motor, so named because 4 coils are used to cause the revolution of the drive shaft. Each coil must be energized in the correct order for the motor to spin.

 

In Figure 3.3, as in Figure 3.1, boxes are used to represent switches; a control unit, not shown, is responsible for providing the control signals to open and close the switches at the appropriate times in order to spin the motors. The control unit is commonly a computer or programmable interface controller, with software directly generating the outputs needed to control the switches.

As with drive circuitry for variable reluctance motors, we must deal with the inductive kick produced when each of these switches is turned off. Again, we may shunt the inductive kick using diodes, but now, 4 diodes are required, as shown in Figure 3.4:

 

Step angle

It is angle through which motor shaft rotates in one step. step angle is different for different motor . selection of motor according to step angle depends on the application , simply if you require small increments in rottion choose motor having smaller step angle.

No of steps require to rotate one complete rotation = 360 deg. / step angle in deg.

Steps/second

The relation between RPM and steps per sec. is given by ,

steps or impulses /sec. =(RPM X Steps /revolution ) /60

 

Pause between impulses can be shorter or longer and it defines revolution rate. This rate cannot be infinite because the motor won't be able to "catch up" with all the impulses (documentation on specific motor should contain such information). So referring to RPM value in datasheet you can calculate steps/sec and from it delay or pause between impulses

 

 

INTERFACING TO 8051.

To cause the stepper to rotate, we have to send a pulse to each coil in turn. The 8051 does not have sufficient drive capability on its output to drive each coil, so there are a number of ways to drive a stepper,

Stepper motors are usually controlled by transistor or driver IC like ULN2003.                                                                                       
 
Driving current for each coil is then needed about 60mA at +5V supply. A Darlington transistor array, ULN2003 is used to increase driving capacity of the 2051 chip.  Four 4.7k resistors help the 2051 to provide more sourcing current from the +5V supply.


 

Coil A

Coil B

Coil C

Coil D

Step

0

1

1

0

1

0

0

1

1

2

1

0

0

1

3

1

1

0

0

4

 

 

CODE EXAMPLE

To move motor in forward direction continuously

Connection -P1.0 -P1.3 connected to Coils A -D.

ASSEMBLY LANGUAGE 

 

C LANGUAGE             (SPJ)

 

 

 

 

 

 

mov a,#66h  ;Load step sequence

 

AGAIN

mov p2,a ;issue sequence to motor

rr a        ;rotate step sequence right clockwise=Next sequence

acall DELAY  ;~ 20 msec.

sjmp AGAIN   ;Repete again

 

 

void main ()
{
TMOD = 0x20 ;
TCON = 0x40 ;
TH1 = 0xf9 ;
TL1 = 0xf9 ;
PCON = 0x80 ;
SCON = 0x50 ;
while (1) /*continues loop */
{
printf("a"); /* transmit a along with CR & LF.
}

 

 

  CONTROLLING STEPPER MOTOR WITH TWO PORT PINS ONLY

 For Forward

D0

D0

Coil energized

0

0

AB

0

1

BC

1

0

CD

1

1

DA

 

 

 

 

 

To reverse the motor just reverse the above sequence viz. 11,10,01,00.

 

Site Developed and maintained by Mahesh Wankhede

 

// each menu gets two parameters (see demo files) // 1. items structure // 2. geometry structure new menu (MENU_ITEMS, MENU_POS); // make sure files containing definitions for these variables are linked to the document // if you got some javascript error like "MENU_POS is not defined", then you've made syntax // error in menu_tpl.js file or that file isn't linked properly. // also take a look at stylesheets loaded in header in order to set styles //-->