LCD Display
Installing Adafruit SPI LCD library:
sudo pip3 install adafruit-circuitpython-rgb-display
Copy the example from the readme at https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display. It needs some modifications to match our pinout and to drive the backlight and reset pins:
import time
import busio
import digitalio
from board …