20
20
21
21
* Adafruit's SimpleIO library: https://github.com/adafruit/Adafruit_CircuitPython_SimpleIO
22
22
"""
23
- from pulseio import PWMOut
23
+ from pwmio import PWMOut
24
24
from simpleio import map_range
25
25
26
26
__version__ = "0.0.0-auto.0"
@@ -33,15 +33,15 @@ class RGBLED:
33
33
34
34
:param red_pin: The physical pin connected to a red LED anode.
35
35
: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.
37
37
:type PWMChannel: PCA9685 PWM channel associated with red_pin.
38
38
:param green_pin: The physical pin connected to a green LED anode.
39
39
: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.
41
41
:type PWMChannel: PCA9685 PWM channel associated with green_pin.
42
42
:param blue_pin: The physical pin connected to a blue LED anode.
43
43
: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.
45
45
:type PWMChannel: PCA9685 PWM channel associated with blue_pin.
46
46
:param bool invert_pwm: False if the RGB LED is common cathode,
47
47
true if the RGB LED is common anode.
0 commit comments