Atom Stepmotor minimum code
- 
					
					
					
					
 This is the minimum code i can get to make the Atom stepmotor to move. from m5ui import * from uiflow import * from easyIO import * import machine import time digitalWrite(22, 0) digitalWrite(23, 0) pin0 = machine.Pin(19, mode=machine.Pin.OUT, pull=machine.Pin.PULL_UP) while True: pin0.on() wait_ms(2) pin0.off() wait_ms(1) wait_ms(2)
