Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions examples/ili9341_shield_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@
# Release any resources currently in use for the displays
displayio.release_displays()

# Use Hardware SPI
spi = board.SPI()

# Use Software SPI if you have a shield with pins 11-13 jumpered
#import busio
#spi = busio.SPI(board.D11, board.D13)

tft_cs = board.D10
tft_dc = board.D9

Expand Down