21from machine
import UART, Pin
23port = UART(1, 115200, tx=Pin(4), rx=Pin(5), timeout=100)
43mc.set_max_acceleration(1, 140)
44mc.set_max_deceleration(1, 300)
47mc.set_max_acceleration(2, 200)
48mc.set_max_deceleration(2, 300)
51 if time.ticks_ms() & 2048:
Represents a serial connection to a Pololu Motoron Motor Controller.