adafruit / Adafruit_CircuitPython_ILI9341

CircuitPython display driver for ILI9341
MIT License
16 stars 11 forks source link

Readme.rst example usage section error #39

Open FoamyGuy opened 3 months ago

FoamyGuy commented 3 months ago

The example usage inside of the readme.rst has the SPI bus init before displayio.release_displays(), which causes trouble if it's modified to use specific pins because the pins will be in use on the 2nd and subsequent executions of the code.py file.

It should be modified to move the release_displays() call to prior to the SPI init.