There's two ways you can use the 1.3" 240x240 display.
The easy way is to use 'pure Python 3' and Pillow library to draw to the display from within Python. This is great for showing text, stats, images etc that you design yourself. If you want to do that, skip this page and go to the Python Setup page.
The hard way is to install a kernel module to add support for the TFT display that will make the console appear on the display. This is cute because you can have any program print text or draw to the framebuffer (or, say, with pygame) and Linux will take care of displaying it for you. If you don't need the console or direct framebuffer access, please consider using the 'pure Python' technique instead as it is not as delicate.
Prepare the Pi!
Before you begin, its a good idea to get your Pi completely updated and upgraded. We assume you have burned an SD card and can log into the console to install stuff.
Run
sudo apt update -y sudo apt-get update -y sudo apt-get upgrade -y
To fully update and upgrade your Pi!
After that is complete run
sudo shutdown -h now
to shutdown the Pi safely. Remove power and attach the bonnet.
Attach power to the Pi and re-log in. Unlike similar displays, this PiTFT's backlight is controlled separately by GPIO 26, which is off by default, so you won't see the it lit up just yet.
Run the following at the terminal
cd ~ sudo apt-get install -y git python3-pip sudo pip3 install --upgrade adafruit-python-shell click git clone https://github.com/adafruit/Raspberry-Pi-Installer-Scripts.git cd Raspberry-Pi-Installer-Scripts sudo python3 adafruit-pitft.py --display=st7789v_bonnet_240x240 --rotate=0 --install-type=console
When you get asked to reboot, reboot!
Zat's it! You will now have the miniPiTFT with a console display on it