Description:
Diameter: 28 mm
Voltage: 5 v
The step Angle: 5.625 x 1/64
The reduction ratio: 1/64
A single weight: 0.04 KG
5 line 4 phase can use ordinary uln2003 chip driver, also can connect into 2 phase Can use supporting development board, plug directly, easy to use stepper motor used on development board
The use of ULN2003 stepper motor power darlington chip driver
Leds indicate A, B, C, D four phase step motor work
Equipped with a stepper motor standard interface, when using, can be directly call waiting.
Package include:
1 x ULN2003 stepper motor driver board
1 x 5 v stepper motor


#include <Stepper.h>
// Define number of steps per rotation:
const int stepsPerRevolution = 2048;
// Wiring:
// Pin 8 to IN1 on the ULN2003 driver
// Pin 9 to IN2 on the ULN2003 driver
// Pin 10 to IN3 on the ULN2003 driver
// Pin 11 to IN4 on the ULN2003 driver
// Create stepper object called 'myStepper', note the pin order:
Stepper myStepper = Stepper(stepsPerRevolution, 8, 10, 9, 11);
void setup() {
// Set the speed to 5 rpm:
myStepper.setSpeed(5);
// Begin Serial communication at a baud rate of 9600:
Serial.begin(9600);
}
void loop() {
// Step one revolution in one direction:
Serial.println("clockwise");
myStepper.step(stepsPerRevolution);
delay(500);
// Step one revolution in the other direction:
Serial.println("counterclockwise");
myStepper.step(-stepsPerRevolution);
delay(500);
}