Introduction: Drive a Stepper Motor With an AVR Microprocessor
Got some scavenged stepper motors from printers/disk drives/etc lying around?
Some probing with an ohmeter, followed by some simple driver code on your microprocessor and you'll be stepping in style.
Step 1: Get to Know Steppers
Basically, you're going to need to figure out where all the little wires go.
First step is to figure out if it's a unipolar or bipolar motor. Have a look at Jones on Steppers for some deeper background, then at Ian Harries' Site for a simple method to figure out an unknown motor.
Read up a bit, then join me in a walkthrough of this motor I got for cheap. (They're on sale for $0.99 right now. They're small, relatively light, but don't have much torque. Don't know what it'll be good for yet.)
Step 2: Find Common Ground
So you've got five (or four, or six) wires. Your motor's going to have two halves, and you can probably even tell just by looking which side each wire belongs to.
If you're only looking at four wires, you're in luck -- it's a bipolar motor. All you have to do is figure out which two pairs of wires go together.
If you've got a unipolar motor, or more than 4 wires, you're going to have to break out your ohmeter. What you're looking for is the common (ground) wire for each half. You can tell which is ground in a bipolar motor because it has half the resistance to either of the poles than the poles do across themselves.
Pictured is my notes from hooking up wires to wires and noting the resistance (or if they're connected at all). You can see that White is the ground for the bottom trio b/c it has half the resistance to Red or Blue that they have to each other.
(This motor's strange and doesn't have a center tap on the top magnet coil. It's like it's half-bipolar, half-unipolar. Maybe you could use this to sense rotation in the Red-White-Blue coil when the Black-Yellow coil is being driven.)
Step 3: Figure Out the Stepping Order
I was going to drive this motor as a bipolar one, so I'm ignoring the White ground wire. I've only got four wires to worry about.
You might want to run your unipolar motor as bipolar anyway, because it uses the whole coil in both phases instead of alternating between the two halves of each coil. More coil = more torque.
Run current through a pair (noting the polarity you chose) and then run current through the other pair at the same time. When you hook up the second pair, watch which way the motor turns. Write this down.
Now reverse the polarity on the first pair you chose. Then hook up the second pair again with their polarity also reversed. Note the direction.
From this you should be able to figure out the sequence for rotating the motor in either direction. In my example, both ended up turning counterclockwise, so stepping through the sequence in the same way I chose will step the motor CCW.
Step 4: Taking the Motor for a Test Drive
Hook up the wires directly up to your microproc and burn it up with the following code:
/* Playing with getting the small stepper motors driven. */ /* Include delay function */#define F_CPU 1000000UL #include /* Pin defs for ATTiny2313 */ /* Clockwise order */ #define BLUE _BV(PB0) #define BLACK _BV(PB1) #define RED _BV(PB2) #define YELLOW _BV(PB3) #define DELAY 200 /* milliseconds between steps */ int main(void){ DDRB = 0xff; /* Enable output on all of the B pins */ PORTB = 0x00; /* Set them all to 0v */ while(1){ /* main loop here */ PORTB = BLUE; _delay_ms(DELAY); PORTB = BLACK; _delay_ms(DELAY); PORTB = RED; _delay_ms(DELAY); PORTB = YELLOW; _delay_ms(DELAY); } }
How simple is that code? Really simple.
All it does is make some nice definitions so I could refer to the wires by color rather than their pin-names, and then it toggles them on in sequence with an adjustable delay in between. For starters, I selected a half-second delay between steps.
See the short video for the results. If you're really on your game, count the number of steps per cycle to figure out the motor's single-stepping angular resolution.
(Oh yeah. PS. Drives with no load at 3.6v easily. See battery in video.)
Attachments
Step 5: Swing It Back and Forth
A little code-cleanup, and we can run it back and forth.
I put the clockwise sequence into an array so that you can step through the phases with a simple for loop. Now you can run the loop up or down to go clockwise or counterclockwise.
int main(void){ const uint8_t delay = 50; const uint8_t clockwise[] = {BLUE, BLACK, RED, YELLOW}; uint8_t i; DDRB = 0xff; /* Enable output on all of the B pins */ PORTB = 0x00; /* Set them all to 0v */ while(1){ /* main loop here */ for ( i=0; i<=3; i++ ){ /* step through the colors clockwise */ PORTB = clockwise[i]; _delay_ms(delay); } for ( i=3; i>=0; i-- ){ /* step through the colors ccw */ PORTB = clockwise[i]; _delay_ms(delay); } }}
See the racy video for the back-and-forthing.
Attachments
Step 6: I Never Half-step, Because I'm Not a Half-stepper...
Half-stepping in a nutshell: Instead of Blue, Black, Red, Yellow, you drive the motor with Blue, Blue+Black, Black, Black+Red, Red, Red+Yellow, Yellow, Yellow+Blue. The upshot is that for half the time you're engaging both magnets at once.
And during the times that both sets are engaged, the motor points halfway between the two, shrinking the angle between "steps" and making the motor turn more smoothly. Can you tell from the video? I'm not sure...
Now the part of the code that does the half-stepping looks like this:
void halfStepping(uint16_t delay, uint8_t direction[]){ uint8_t i; for ( i=0; i<=3; i++ ){ PORTB = direction[i]; /* single-coil part */ _delay_ms(delay); PORTB |= direction[i+1]; /* add in half-step */ _delay_ms(delay); }}
The first PORTB command sets a single pole to positive and all the rest to negative. Then it waits. Then the second PORTB command sets a second pole (on the other winding) to positive, engaging both windings for 1.4x the torque (and 2x the current).
A full program listing is attached below. Two arrays are now defined (clockwise, counterclockwise) and both have 5 elements each to allow for the i+1 entry in the halfStepping function.
Step 7: Add a Motor Driver
So far so good.
Only problem is that the motor doesn't seem to have all that much torque, which could be due to the fact that the microprocessor will only put out ~50mA per pin. The obvious next step would be to hook it up to a motor driver to supply it with more juice.
But then a little thinkin': I'm only driving it with 5v, and the coil-winding resistance is ~125 ohms. Which means that the motor's only drawing 40mA per pin, and it should be driven just fine by the (beefy!) AVR chip.
So to get more voltage driving the motor, I hooked it up to a SN754410 H-bridge chip. The circuit is pretty simple. Each pin from the AVR goes to an input, and the corresponding output pins go to the motor. The chip needs 5v for the logic section, and can take a lot more voltage in the motor section.
Running it on 11.25v (three 3.6v batteries) helped a bit. Noticeably more torque to my finger, but it's still not a powerhouse. Not bad for a motor which is smaller than a nickel, though. And now the circuit's become a general-purpose bipolar stepper motor driver.
Added Nov 29: Ran the motor last night at 12v for a while and it started to get hot. I'm not sure if it was a resonant frequency problem or if it was simply too much current for the windings. Either way, be a bit careful if you're driving this little motor with bigger voltages.
Step 8: The End
So what did I learn? Driving a stepper motor with an AVR (and an H-bridge chip) is pretty easy, even in the "fancy" half-stepping mode.
Not sure what I'll do with the little stepper motors just yet, though. Any suggestions?
47 Comments
8 years ago on Step 4
for the more Arduino oriented, here is a program for this specific motor using an adafruit library:
http://mlab.taik.fi/paja/wp-content/uploads/2010/06/902_motorShield_stepperMotor.pde
8 years ago on Introduction
Some info on this motor here as well:
http://profmason.com/?p=173
But they clearly read yr instructable
10 years ago on Introduction
I'm trying to come up with a way to control twelve steppers... Any ideas besides multiple driver boards?
Reply 10 years ago on Introduction
Nope! Multiple stepper drivers is the way to go. (Not sure you need multiple "boards", but at least multiple driver ICs.)
When you start doing anything times four or times twelve, it can easily bog your microprocessor down, especially if you're doing "fancy" motion control stuff like acceleration and deceleration. The best way around that is to offload as much as you can to purpose-built silicon.
And if you decide to get even fancier, you can dedicate one micro per motor or section-that-requires-coordination. Then you can use a master controller to run all the sub-controllers.
This gets rapidly out of the realm of quick-and-dirty hacks though, and into engineering. Are you sure you want to drive stepper motors? Can you do something with a DC motor and position sensors?
Reply 10 years ago on Introduction
No I'm not sure I want to use steppers. Would it be more readable to go with dc motors and encoders? Feasible as far asfinancialy and less electronics overall? I would need the motors to move fairly slowly like 1 inch a sec. Possible?
Reply 10 years ago on Introduction
To run DC motors, you just need to apply power. If you need speed control, you can use PWM. Nerdkits has a good tutorial on running DC motors, for instance. (I'm writing a book on AVR programming at the moment with two chapters on motor control, but it won't be out until summer...)
Also see sites like Robot Room and Dallas Personal Robotics Group -- you'll need slightlly more complex circuitry if you'd like the motor to go both forwards and backwards. (There, again, a few dollars spent in motor driver chips is easily worth the hassle, IMO, but it's also fun to DIY.)
Slowing a DC motor down as much as you'd like to requires a gear train, which can be a pain to assemble. On the other hand, if you're slowing a DC motor down from a few thousand RPM to just a few, you'll get a tremendous gain in usable torque, so I'd say it's worth the tradeoff. And if you put your encoders upstream of the geartrain, you get an equivalent gain in measurement resolution, which can help if you need the motors to stay in synch.
Reply 8 years ago on Introduction
there are rather cheap motors available that have a gear already build in and turn very slowly. It all depends on what exactly holychachi wants to drive
9 years ago on Introduction
Hey I want to drive the motors according to the steps inputted by the user itself , and I do believe I require serial communication for that , I know it's a piece of cake for an arduino to do , but I want to get it with low level.
It would be great if yo could help me with that , I'm only a novice:)
Reply 8 years ago on Introduction
as you generally need 4 wires to drive a stepper and 2 wires for serial, it is a bit difficult but not impossible to do it on an attiny85. Simply install softserial and read the data that comes in and translate that to steps.
I havent checked it myself and not sure how big the softserial code is, but I guess it would fit. Also, it is possible to drive a unipolar stepper motor with only 2 pins
Now although as I said this is all possible, you could wonder if you should do it, with a pro mini available at 1.60 euro that might be a better choice
11 years ago on Introduction
bro can i use hard disk motor ...?
Reply 10 years ago on Introduction
No you can't, these are mostly 3 wire BLDC motors. I broke two l293 chips on one of these :) .
11 years ago on Introduction
hi there, I made a attiny13 + uln2003 to controll a small stepper motor, which can only running at ~40 rpm, if I increase the output, the motor just not run, what's happened help please.
12 years ago on Step 8
An idea for the stepper motor, use two of them in a small robot as the drive motors to do fancy precision moves :)
12 years ago on Step 7
what about using l293d
Reply 12 years ago on Step 7
Would be good.
If you're serious, you usually start off with an idea of how much torque and speed you need for your application, then find a motor that'll deliver, and then pick a motor driver depending on the motor's current requirements.
But for low-current applications, I've had good luck with the SN754410, for slightly larger currents the 293D is good, and above that, especially if you're driving with a microcontroller or need microstepping, Allegro has some great offerings.
And there's always build-it-yourself from 8 MOSFETs. Google for "H-bridge" to get an idea.
Enjoy!
13 years ago on Step 7
Hi I have a unipolar stepper motor 0.4A,15v,1.8 degree my chip is attiny3213, can i drive it with ULN2803?
Reply 13 years ago on Step 7
Should be fine. According to manufacturers site: "currents up to 1 A at voltages from 4.5 V to 36 V"
13 years ago on Introduction
I m working with this stepper and a Picaxe 28x project board.
I want to make a 90 degree swing, that would be about 5 steps, based on the 20 steps for 360 degree
anyone an idea how to do this in the Picaxe Basic language?
I can make it step but not exactly 90 degree forward and backwards
Any suggestion is welcome, thanks
14 years ago on Introduction
where did u get that thing on the end of your motor to indicate it is turning?
14 years ago on Introduction
Can someone please find me a good reference/explanation of the different functions/commands/whatever that are used for AVR's? I've been dinging around for a while now with an Arduino and would really like to start using just the uC and not a developement board and simple language with it. I pretty sure I can get past getting the HEX file on the chip, I just need help with the language. Thx for any help.