Skip to content

Commit dbbde2b

Browse files
committed
Moved from pulseio.PWMOut to pwmio.PWMOut
1 parent c3f9805 commit dbbde2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_rgbled.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
* Adafruit's SimpleIO library: https://github.com/adafruit/Adafruit_CircuitPython_SimpleIO
2222
"""
23-
from pulseio import PWMOut
23+
from pwmio import PWMOut
2424
from simpleio import map_range
2525

2626
__version__ = "0.0.0-auto.0"
@@ -33,15 +33,15 @@ class RGBLED:
3333
3434
:param red_pin: The physical pin connected to a red LED anode.
3535
:type ~microcontroller.Pin: Microcontroller's red_pin.
36-
:type pulseio.PWMOut: PWMOut object associated with red_pin.
36+
:type pwmio.PWMOut: PWMOut object associated with red_pin.
3737
:type PWMChannel: PCA9685 PWM channel associated with red_pin.
3838
:param green_pin: The physical pin connected to a green LED anode.
3939
:type ~microcontroller.Pin: Microcontroller's green_pin.
40-
:type pulseio.PWMOut: PWMOut object associated with green_pin.
40+
:type pwmio.PWMOut: PWMOut object associated with green_pin.
4141
:type PWMChannel: PCA9685 PWM channel associated with green_pin.
4242
:param blue_pin: The physical pin connected to a blue LED anode.
4343
:type ~microcontroller.Pin: Microcontroller's blue_pin.
44-
:type pulseio.PWMOut: PWMOut object associated with blue_pin.
44+
:type pwmio.PWMOut: PWMOut object associated with blue_pin.
4545
:type PWMChannel: PCA9685 PWM channel associated with blue_pin.
4646
:param bool invert_pwm: False if the RGB LED is common cathode,
4747
true if the RGB LED is common anode.

0 commit comments

Comments
 (0)