Micropython stepper motor driver on ULN2003
Go to file
zhcong 0e5fe3fbad
Merge pull request #8 from yousseftechdev/master
Updated Stepper.py to be more convenient and removed unnecessary function `create()`
2025-03-15 13:33:17 +08:00
img upload v1.0 2018-12-18 15:50:06 +08:00
README.MD Update README.MD 2025-03-14 14:28:00 +02:00
boot.py Update boot.py 2025-03-14 14:28:29 +02:00
main.py updated README.MD, Demo and Stepper.py 2025-03-14 14:22:48 +02:00
stepper.py Update and rename Stepper.py to stepper.py 2025-03-14 14:24:38 +02:00

README.MD

ULN2003 for ESP32

uln2003 for MicroPython has been in github, here's the link. But it's work for microbit, so I change a little to transplant for my NodeMCU's ESP-32s. Here's the example:

from stepper import Stepper

in1 = 16
in2 = 17
in3 = 5
in4 = 18
delay = 2
mode = 1 # 0 for half step, 1 for full step

def main() -> None:
    s1 = Stepper(in1, in2, in3, in4, delay, mode)
    s1.step(100)
    s1.step(100,-1)
    s1.angle(180)
    s1.angle(360,-1)

if __name__ == "__main__":
    main()

function angle is angle, and the PIN map: IN1 link PIN_16 IN2 link PIN_17 IN3 link PIN_5 IN4 link PIN_18 My uln2003 board like this, and stepper runing:
uln2003 uln2003