File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 8
8
DigitalIO for ESP32 over SPI.
9
9
10
10
* Author(s): Brent Rubell, based on Adafruit_Blinka digitalio implementation
11
- and bcm283x Pin implementation.
11
+ and bcm283x Pin implementation.
12
+
12
13
https://github.com/adafruit/Adafruit_Blinka/blob/master/src/adafruit_blinka/microcontroller/bcm283x/pin.py
13
14
https://github.com/adafruit/Adafruit_Blinka/blob/master/src/digitalio.py
14
15
"""
@@ -195,7 +196,7 @@ def drive_mode(self):
195
196
def drive_mode (self , mode ):
196
197
"""Sets the pin drive mode.
197
198
:param DriveMode mode: Defines the drive mode when outputting digital values.
198
- Either PUSH_PULL or OPEN_DRAIN
199
+ Either PUSH_PULL or OPEN_DRAIN
199
200
"""
200
201
if mode is DriveMode .OPEN_DRAIN :
201
202
raise NotImplementedError (
Original file line number Diff line number Diff line change 9
9
10
10
.. automodule :: adafruit_esp32spi.adafruit_esp32spi_socket
11
11
:members:
12
+
13
+ .. automodule :: adafruit_esp32spi.adafruit_esp32spi_wifimanager
14
+ :members:
15
+
16
+ .. automodule :: adafruit_esp32spi.adafruit_esp32spi_wsgiserver
17
+ :members:
18
+
19
+ .. automodule :: adafruit_esp32spi.digitalio
20
+ :members:
21
+
22
+ .. automodule :: adafruit_esp32spi.PWMOut
23
+ :members:
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 = ["digitalio", "busio "]
28
+ autodoc_mock_imports = ["adafruit_requests " ]
29
29
30
30
31
31
intersphinx_mapping = {
You can’t perform that action at this time.
0 commit comments