File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 25
25
# Uncomment the below if you use native CircuitPython modules such as
26
26
# digitalio, micropython and busio. List the modules you use. Without it, the
27
27
# autodoc module docs will fail to generate with a warning.
28
- autodoc_mock_imports = ["pulseio " ]
28
+ autodoc_mock_imports = ["pwmio " ]
29
29
30
30
31
31
intersphinx_mapping = {
You can’t perform that action at this time.
0 commit comments