Feature:
On-board DIP switch, you can easily adjust the drive segments
Terminal power connector for easy connection drive power
Compatible with 12 / 24V drive scheme
Suitable for 42 stepper motor drive, 3D printers and DIY
Specification:
Size: 42 x 42 x 15mm
Fixed: 3mm
Pitch: 1400 x 1400mil (35.56 x 35.56mm)
Logic voltage: 5V
Input voltage: 12-30V
Ports: Digital
Interface: Direction, enable, speed
Applicable module: A4988, DRV8825
Package included:
1 x 42 Stepper Motor Drive Expansion Board
โมดูลที่ใช้ร่วมกัน

Arduino Code Example:
//Arduino Sketch.
//-------------------------------------------------------------------------
int Index;
void setup()
{
pinMode(6, OUTPUT); //Enable
pinMode(5, OUTPUT); //Step
pinMode(4, OUTPUT); //Direction
digitalWrite(6,LOW);
}
void loop()
{
digitalWrite(4,HIGH);
for(Index = 0; Index < 2000; Index++)
{
digitalWrite(5,HIGH);
delayMicroseconds(500);
digitalWrite(5,LOW);
delayMicroseconds(500);
}
delay(1000);
digitalWrite(4,LOW);
for(Index = 0; Index < 2000; Index++)
{
digitalWrite(5,HIGH);
delayMicroseconds(500);
digitalWrite(5,LOW);
delayMicroseconds(500);
}
delay(1000);
}
//----------------------------------------------------------------