We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 952b38b commit 4e48e69Copy full SHA for 4e48e69
examples/esp32spi_aio_post.py
@@ -15,12 +15,12 @@
15
print("WiFi secrets are kept in secrets.py, please add them there!")
16
raise
17
18
-# for externally connected ESP32
+# If you have an externally connected ESP32:
19
esp32_cs = DigitalInOut(board.D9)
20
esp32_ready = DigitalInOut(board.D10)
21
esp32_reset = DigitalInOut(board.D5)
22
23
-# For PyPortal use
+# If you are using a board with pre-defined ESP32 Pins:
24
"""
25
esp32_cs = DigitalInOut(board.ESP_CS)
26
esp32_ready = DigitalInOut(board.ESP_BUSY)
@@ -57,4 +57,4 @@
57
wifi.reset()
58
continue
59
response = None
60
- time.sleep(15)
+ time.sleep(15)
0 commit comments