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 55fb182 commit 3444788Copy full SHA for 3444788
examples/ili9341_shield_simpletest.py
@@ -13,7 +13,13 @@
13
# Release any resources currently in use for the displays
14
displayio.release_displays()
15
16
+# Use Hardware SPI
17
spi = board.SPI()
18
+
19
+# Use Software SPI if you have a shield with pins 11-13 jumpered
20
+#import busio
21
+#spi = busio.SPI(board.D11, board.D13)
22
23
tft_cs = board.D10
24
tft_dc = board.D9
25
0 commit comments