#define StepPin 9
#define DirPin 8
void setup() {
// put your setup code here, to run once:
pinMode(StepPin, OUTPUT);
pinMode(DirPin, OUTPUT);
delay(1000);
digitalWrite(DirPin, HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(StepPin, HIGH);
delayMicroseconds(5000);
digitalWrite(StepPin, LOW);
delayMicroseconds(5000);
}