I want to use a MDDRC10 motor driver with a Raspberry Pi Pico. But I can't get it to work from the manual. As I understand it from page 3, anything over 1.5 V will activate the channel and then I can use PWM signals to control the speed. Is that correct?
I tried to use a signal via:
motor = PWM(16, freq= 50, duty_u16= 65535)
or
motor = Pin(16, Pin.OUT)
and neither moved the motor. I double-checked that the wires are all connected properly.
Am I misunderstanding something in the documentation?
