The stepper motor is controlled by pulsing the GPIO pins from LOW to HIGH states in a sequence that causes the motor to spin. Each time a GPIO pin state is HIGH an electromagnet is engaged inside the stepper motor to cause a rotational force on the center rotor. With the proper sequence and timing you achieve motor rotation.
Here is a fantastic article with photos and illustrations to help learn more about stepper motors and stepping techniquest:
http://www.lirtex.com/robotics/stepper-motor-controller-circuit/
Below are photos of the assembled board and attached stepper motor.
This breakout board includes two ports for controlling two separate stepper motors.
You can purchase an additional stepper motor to use on the second port here:
The two stepper motor controllers are mapped to GPIO pins on the Raspberry Pi's P1 header as depicted in the diagram below. The GPIO numbering in the diagrams below is based on the WiringPi / Pi4J numbering scheme. See below for a mapping chart for other numbering schemes.
Below is a cross reference chart to better help define the GPIO pin numbers used under the various pin numbering schemes.
A jumper is provided on the board to supply 5 VDC to the stepper motors directly from the 5 VDC output from the Raspberry Pi. If you would prefer to provide 5 VDC from an external power supply, please remove the jumper from JP1 and connect your power source to JP1 pins 2 and 3. See the diagrams below.
Make sure that you place the jumper between pins 1 and 2.
ATTENTION !
Never attach JP1 pins 1 and 3 together as this will cause a direct short on the 5 VDC power line from the Raspberry Pi. This would likely render the Pi defective.
Below is a sample Java program for controlling the stepper motor. The Pi4J project now includes a new stepper motor interface and component implementation for GPIO based stepper motors. This makes it really simple to control a stepper motor from Java. (Note that the stepper motor implementation is available in 0.0.5 and later versions of Pi4J.)
The source for this example is provided with the Pi4J installation package and can also be found on Github:
This was my first time working with a stepper motor and having this kit certainly made it much easier to understand and get started. For me the timing was the trickiest thing to get right. Fortunately with a little trial and error I was able to get it working. Here is a quick video demonstrating the final working project.
Happy New Year!