const int dirPin = 2;
const int stepPin = 3;
const int startButtonPin = 4;  // Pin for the start button
const int stopButtonPin = 5;   // Pin for the stop button

void setup() {
  pinMode(stepPin, OUTPUT);
  pinMode(dirPin, OUTPUT);
  pinMode(startButtonPin, INPUT_PULLUP);  // Use INPUT_PULLUP to enable internal pull-up resistor
  pinMode(stopButtonPin, INPUT_PULLUP);
}

void loop() {
  if (digitalRead(startButtonPin) == LOW) {
    startMotor();
  }

  if (digitalRead(stopButtonPin) == LOW) {
    stopMotor();
  }
}

void startMotor() {
  // Set motor direction clockwise
  digitalWrite(dirPin, HIGH);

  // Spin motor until stop button is pressed
  while (digitalRead(stopButtonPin) == HIGH) {
    digitalWrite(stepPin, HIGH);
    delayMicroseconds(2000);
    digitalWrite(stepPin, LOW);
    delayMicroseconds(2000);
  }

  // Delay for a short period before stopping
  delay(100);
}

void stopMotor() {
  // Stop the motor by setting both dirPin and stepPin LOW
  digitalWrite(dirPin, LOW);
  digitalWrite(stepPin, LOW);

  // Delay to ensure the motor has stopped
  delay(100);

  // Reset the motor position counterclockwise
  digitalWrite(dirPin, HIGH);

  // Delay for a short period before stopping
  delay(100);
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
A4988
drv1:ENABLE
drv1:MS1
drv1:MS2
drv1:MS3
drv1:RESET
drv1:SLEEP
drv1:STEP
drv1:DIR
drv1:GND.1
drv1:VDD
drv1:1B
drv1:1A
drv1:2A
drv1:2B
drv1:GND.2
drv1:VMOT
stepper1:A-
stepper1:A+
stepper1:B+
stepper1:B-
vcc1:VCC
gnd1:GND
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r