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
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
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
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.)
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.
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
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
Not sure what I'll do with the little stepper motors just yet, though. Any suggestions?



















































Visit Our Store »
Go Pro Today »




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?
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.
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!
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
The language is C, and there's tons of good resources for that. For beginning I like the Kernighan & Ritchey book. Or search around for C tutorials on the web until you find one that looks good for you.
For AVR-specific C, everything you need is at the avr libc project page: http://www.nongnu.org/avr-libc/user-manual/index.html. While you're there, see their example projects link.
For AVR hardware-related stuff, there's the datasheet for the chip you're using (which can be a little daunting, but is very very good once you get used to it) and a bunch of projects online to learn from.
If I were just starting out, I'd pick up a project like a blinking-light kinda thing and learn just enough C to get that working. Then continue on project by project, expanding your hardware and software knowledge in tandem, but always with a concrete project in mind. At least that helps me...
I made a page of many helpful AVR resources for a class I taught: http://wiki.hacdc.org/index.php?title=Useful_AVR_Links
Or a dishwasher repair place may have a similar solenoid-driven water valve for use in dishwashers.
Unless your application is very strange, buying a purpose-built solenoid valve is probably a lot easier, cheaper, and more reliable.
If your application is very strange, you may need more torque to open/close the valve than a direct-driven stepper motor can provide. You may need a gearbox.
There's some extra tricks because usually switches "bounce" back and forth between on and off as you press them down. You're gonna want to debounce the switch.
This PDF on debouncing is pretty good. And google around to find more examples.
Another stepper to look at are the Japan Servo low-voltage models. For example. They're a little heavier/bigger, but offer a much smaller step size and some more torque. They also cost $5 each, instead of $1.
As for AVR vs Pic, it's like Coke vs Pepsi. (With the AVR playing the part of Coke, as far as I'm concerned.)
That said, I would bet that back EMF is not as important for steppers as for regular DC motors because of the way they're driven. I'll do some 'scoping and get back to you on that.
And anyway, the AVRs also have limiting diodes on the pins that keep the voltage in the 0-12v range. They're not as beefy as the ones in the motor-driver chip, and can overheat if you really overdrive the pins, but for this project, they suit just fine.
For a small (50mA) motor like this, I'd not hesitate to drive it directly from AVR pins. Everything's within spec all around as far as I can see. But I'll test out the peak back-EMF under heavy load before I bet the farm on it.
check this guy out!
http://www.taomc.com/gallery/sand.htm