Skip to content

Commit d7f2335

Browse files
authored
Moved from pulseio.PWMOut to pwmio.PWMOut
1 parent 94cbaa9 commit d7f2335

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_motor/motor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class DCMotor:
2828
"""DC motor driver. ``positive_pwm`` and ``negative_pwm`` can be swapped if the motor runs in
2929
the opposite direction from what was expected for "forwards".
3030
31-
:param ~pulseio.PWMOut positive_pwm: The motor input that causes the motor to spin forwards
31+
:param ~pwmio.PWMOut positive_pwm: The motor input that causes the motor to spin forwards
3232
when high and the other is low.
33-
:param ~pulseio.PWMOut negative_pwm: The motor input that causes the motor to spin backwards
33+
:param ~pwmio.PWMOut negative_pwm: The motor input that causes the motor to spin backwards
3434
when high and the other is low."""
3535

3636
def __init__(self, positive_pwm, negative_pwm):

0 commit comments

Comments
 (0)