const int dirPin = 2;
const int stepPin = 3;
const int buttonPin = 4;  // Pin untuk push button

bool motorRunning = false;
bool buttonStateLast = HIGH;
unsigned long lastDebounceTime = 0;
unsigned long debounceDelay = 50;

void setup() {
  pinMode(stepPin, OUTPUT);
  pinMode(dirPin, OUTPUT);
  pinMode(buttonPin, INPUT_PULLUP);  // Gunakan INPUT_PULLUP untuk mengaktifkan resistor pull-up internal
}

void loop() {
  int buttonState = digitalRead(buttonPin);

  if (buttonState != buttonStateLast) {
    lastDebounceTime = millis();
  }

  if ((millis() - lastDebounceTime) > debounceDelay) {
    if (buttonState != digitalRead(buttonPin)) {
      if (buttonState == LOW) {
        toggleMotor();
      }
    }
  }

  buttonStateLast = buttonState;
}

void toggleMotor() {
  if (!motorRunning) {
    startMotor();
  } else {
    stopMotor();
  }
}

void startMotor() {
  motorRunning = true;

  // Set arah motor searah jarum jam
  digitalWrite(dirPin, HIGH);

  // Putar motor sampai tombol ditekan kembali
  while (digitalRead(buttonPin) == HIGH) {
    digitalWrite(stepPin, HIGH);
    delayMicroseconds(2500);
    digitalWrite(stepPin, LOW);
    delayMicroseconds(2500);
  }

  motorRunning = false;

  // Tunda sebentar sebelum menghentikan
  delay(100);
}

void stopMotor() {
  motorRunning = false;

  // Hentikan motor dengan mengatur dirPin dan stepPin menjadi LOW
  digitalWrite(dirPin, LOW);
  digitalWrite(stepPin, LOW);

  // Tunda untuk memastikan motor berhenti
  delay(100);

  // Reset posisi motor berlawanan arah jarum jam
  digitalWrite(dirPin, HIGH);

  // Tunda sebentar sebelum menghentikan
  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