from machine import Pin
import utime

# Define the step pins to control the motors
stepper = Pin(5, Pin.OUT)

while True:
            stepper.on()
            utime.sleep(0.001)
            stepper.off()
            utime.sleep(1)
A4988