We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3cf7b8a + b9154b5 commit 96887eeCopy full SHA for 96887ee
examples/esp32spi_simpletest.py
@@ -16,12 +16,18 @@
16
esp32_ready = DigitalInOut(board.ESP_BUSY)
17
esp32_reset = DigitalInOut(board.ESP_RESET)
18
19
-# If you have an ItsyBitsy Airlift:
+# If you have an AirLift Shield:
20
+# esp32_cs = DigitalInOut(board.D10)
21
+# esp32_ready = DigitalInOut(board.D7)
22
+# esp32_reset = DigitalInOut(board.D5)
23
+
24
+# If you have an AirLift Featherwing or ItsyBitsy Airlift:
25
# esp32_cs = DigitalInOut(board.D13)
26
# esp32_ready = DigitalInOut(board.D11)
27
# esp32_reset = DigitalInOut(board.D12)
28
29
# If you have an externally connected ESP32:
30
+# NOTE: You may need to change the pins to reflect your wiring
31
# esp32_cs = DigitalInOut(board.D9)
32
# esp32_ready = DigitalInOut(board.D10)
33
# esp32_reset = DigitalInOut(board.D5)
0 commit comments