Skip to content

gavinlyonsrepo/ST7789_TFT_RPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Website Rss Donate

ST7789 TFT LCD Raspberry PI Display Library

Image TFT

Table of contents

Overview

  • Project Name: ST7789_TFT_RPI
  • Author: Gavin Lyons.
  • Description:
  1. A C++ Library to connect 16-bit color ST7789 TFT LCD displays to Raspberry Pi single board computers.
  2. Dynamic install-able Raspberry Pi C++ library.
  3. 15 fonts included, new Fonts can be added by user
  4. Graphics + print class included
  5. Dependency: bcm2835 Library, Provides SPI , system timer and GPIO control.
  6. Hardware (SPI0 and SPI1-aux) & Software SPI
  7. Inverse colour, rotate, sleep modes supported.
  8. 24 bit colour , 16 bit color & bi-color Bitmaps supported.

See Also

This is a truncated port of my combined display library : Display_Lib_RPI. created for a user request.

Installation

  1. Install the dependency bcm2835 Library if not installed

  2. Download the ST7789_TFT_RPI library

    • Open a Terminal in a folder where you want to download,build & test library
    • Run following command to download latest release from github.
curl -sL https://github.com/gavinlyonsrepo/ST7789_TFT_RPI/archive/1.0.2.tar.gz | tar xz
  1. Run 'make' and 'sudo make install' to run the makefile to build and then install library.
    • It will be installed to usr/local/lib and usr/local/include by default.
    • You can run 'make help' here to see other make options(uninstall etc).
cd ST7789_TFT_RPI-1.0.2
make
sudo make install

Test

  1. Next step is to test your display and installed library with the included test example files, connect display.
  2. Enter the example folder.
  3. Edit the makefile in that folder to select the example file path. Simply edit "SRC" variable at top of the makefile. In the "User SRC directory Option Section" at top of file. Pick an example "SRC" directory path and One ONLY.
  4. Run 'make' commmand. This builds the examples file using the just installed library, and creates a test executable file in "Bin".
  5. Run 'make run' to run that built executable file. This wraps "sudo" as the bcm2835 requires root permissions by default.
  6. User should now see the test routine in that file running on the display. Run 'make help' to see other options.
cd examples
make
make run

Documentation

Fonts

The font system is same as used in Display_Lib_RPI Version 1.3.0, Display_Lib_RPI V 1.3.0.

Software

User options

In the example files. There are 3 sections in "Setup()" function where user can make adjustments to select for SPI type used, and screen size.

  1. USER OPTION 1 GPIO/SPI TYPE
  2. USER OPTION 2 SCREEN SECTION
  3. USER OPTION 3 SPI SPEED , SPI_CE_PIN

USER OPTION 1 SPI TYPE / GPIO

This library supports both Hardware SPI and software SPI. The SetupGPIO function is overloaded(2 off one for HW SPI the other for SW SPI). The parameters set for SetupGPIO define which is used. HW SPI is far faster and more reliable than SW SPI

USER OPTION 2 Screen size + Offsets

User can adjust screen pixel height, screen pixel width and x & y screen offsets. These offsets can be used in the event of screen damage or manufacturing errors around edge such as cropped data or defective pixels. The function InitScreenSize sets them.

USER OPTION 3 SPI SPEED , SPI_CE_PIN

InitSPI function is overloaded(3 off)

  1. Hardware SPI 0
  2. Hardware SPI 1(aux)
  3. Software SPI

Param SPI_Speed (HW SPI Only)

Here the user can pass the SPI Bus freq in Hertz, Maximum 125 Mhz , Minimum 30Khz, The default in file is 8Mhz Although it is possible to select high speeds for the SPI interface, up to 125MHz, Don't expect any speed faster than 32MHz to work reliably. If you set to 0 .Speed is set to bcm2835 constant BCM2835_SPI_CLOCK_DIVIDER_32.

Param SPI_CE_PIN (HW SPI 0 Only)

Note if using Hardware SPI 1(aux) the SPI_CE_PIN is fixed, no choice.

Which Chip enable pin to use two choices. * SPICE0 = 0 * SPICE1 = 1

Param SPI_CommDelay (SW SPI Only)

The user can adjust If user is having reliability issues with SW SPI in some setups. This is a microsecond delay in SW SPI GPIO loop. It is set to 0 by default, Increasing it will slow down SW SPI further.

File system

In example folder: The Main.cpp file contains tests showing library functions. A bitmap data file contains data for bi-color bitmaps and icons tests. The color bitmaps used in testing are in bitmap folder. Examples are set up for 90 degree rotation for a 240X320 display.

# example file name Description
1 Hello_world_HWSPI_0 Basic use case hardware spi 0
2 Hello_world_HWSPI_1 Basic use case hardware spii 1 (aux)
3 Hello_world_SWSPI Basic use case software spi
4 Text_Graphic_Functions Tests text,graphics & function testing
5 Bitmap_Tests bitmaps display
6 Frame_rate_test_bmp Frame rate per second (FPS) bitmaps
7 Frame_rate_test_two Frame rate per second (FPS) text and graphics

There are 2 makefiles.

  1. Root directory, builds and installs library at a system level.
  2. Example directory builds a chosen example file using installed library to an executable. which can then be run.

Library naming :

  1. Library name = librpist7789gl
  2. Linker flags for complier = -lrpist7789gl (also needs -lbcm2835 for bcm2835 library)
  3. Library File suffix = RVL
  4. Project name = ST7789_TFT_RPI

Tool chain

  • Development Tool chain.
    1. Raspberry PI 3 model b ( will not work on RPi 5 see notes)
    2. C++, g++ (Debian 12.2.0)
    3. Raspbian , Debian 12 bookworm OS, 64 bit.
    4. kernel : aarch64 Linux 6.1.0-rpi7-rpi-v8
    5. bcm2835 Library v1.75 dependency.

Hardware

Tested and developed on:

  • Size 1.69" IPS color TFT LCD
  • Resolution: 240 (H) RGB x 280 (V)
  • Control chip: st7789v2
  • Display area 27.972 (H) x 32.634 (V)
  • Panel size 30.07 (H) x37.43 (V) x1.56 (d)
  • Logic voltage 3.3V

Connections as setup in main.cpp test file.

TFT PinNum Pindesc RPI HW SPI 0 RPI SW SPI RPI HW SPI 1 Aux
1 LED VCC VCC VCC
2 SS/CS GPIO8 SPI_CE0 GPI12 GPIO16 SPI_AUX_CE2
3 DC GPIO24 GPIO24 GPIO24
4 RESET GPI025 GPIO25 GPIO25
5 SDA GPIO10 SPI_MOSI GPIO19 GPIO20 SPI_AUX_MOSI
6 SCLK GPIO11 SPI_CLK GPIO26 GPIO21 SPI_AUX_CLK
7 VCC VCC VCC VCC
8 GND GND GND GND
  1. Connect LED backlight pin 1 thru a resistor to VCC.
  2. This is a 3.3V logic device do NOT connect the I/O logic lines to 5V logic device.
  3. Pick any GPIO you want for SW SPI, for HW SPI: reset and DC lines are flexible.
  4. User can select SPI_CE0 or SPI_CE1 for HW SPI 0
  5. Backlight control is left to user.

Output

output pic

Notes

Multiple SPI devices

When using hardware SPI for multiple devices on the bus. If the devices require different SPI settings (speed of bus, bit order , chip enable pins , SPI data mode). The user must call function TFTSPIHWSettings() before each block of SPI transactions for display in order to refresh the SPI hardware settings for that device. See github issue #1.

Raspberry Pi five

Will not work on Raspberry 5 at present as the bcm2835 Library dependency is not updated to work yet on Rpi5.

Display offsets

The display initialisation requires an offset calculation which differs for different size and resolution displays. This is in the code(Function AdjustWidthHeight()) but the many different size displays are not available for testing or dealt with. If using a display other than 240x320(the default and size of ST7789 VRAM) and if user finds they cannot address all screen or their data is offset. Try Setting the pixel width and height of your screen to 240X320 and do not write as much as possible to the part of the Video RAM you cannot see. For example if you have a 240X280 display in 0 degree rotation

  1. Set pixel Width = 240 and pixel height = 320
  2. Do not write to the missing 40 pixels in the Y-axis, you still can but it is inefficient.

Hardware spi aux

Support for SPI 1 port is included, however the measured frame rate on this port is ~50% less than SPI 0 for reasons unknown at time of writing (unrelated to library code). See Frame rate test results file in 'docs'.