Features
Support 8 kinds of current control
Support 7 kinds of micro steps adjustable
The interface adopts high-speed optocoupler isolation
Automatic semi-flow to reduce heat
Large area heat sink
Anti-high-frequency interference ability
Input anti-reverse protection
Overheat, over current and short circuit protection
Specification
Input Current: 0~5A
Output Current: 0.5~4.0A
Control Signal: 3.3~24V
Power (MAX): 160W
Micro Step: 1, 2/A, 2/B, 4, 8, 16, 32
Temperature: -10~45℃
Humidity: No Condensation
Weight: 0.2 kg
Dimension: 96 * 71 * 37 mm
int PUL=7; //define Pulse pin
int DIR=6; //define Direction pin
int ENA=5; //define Enable Pin
void setup() {
pinMode (PUL, OUTPUT);
pinMode (DIR, OUTPUT);
pinMode (ENA, OUTPUT);
}
void loop() {
for (int i=0; i<6400; i++) //Forward 5000 steps
{
digitalWrite(DIR,LOW);
digitalWrite(ENA,HIGH);
digitalWrite(PUL,HIGH);
delayMicroseconds(50);
digitalWrite(PUL,LOW);
delayMicroseconds(50);
}
for (int i=0; i<6400; i++) //Backward 5000 steps
{
digitalWrite(DIR,HIGH);
digitalWrite(ENA,HIGH);
digitalWrite(PUL,HIGH);
delayMicroseconds(50);
digitalWrite(PUL,LOW);
delayMicroseconds(50);
}
}
Notice
This shopping mall do not give advice and reference of all products. Especially we try to support data, user guide based on manufacture. So languages are differ from manufactures. This condition is not reason to return, and exchange.