- Name: ST7789_LTSM
- Description:
C++ Library for a ST7789 TFT SPI LCD for the Arduino Eco-system.
- Arduino eco-system library.
- Invert, Scroll, rotate and sleep control.
- 16 ASCII fonts included, fonts can easily be removed or added.
- Advanced graphics class included.
- Advanced frame buffer mode included.
- Bitmaps supported: 1, 8 and 16 bit.
- Hardware & software SPI options
- Project url link
The library is included in the official Arduino library manger and the optimum way to install it is using the library manager which can be opened by the manage libraries option in Arduino IDE.
This library requires the Arduino library 'display16_LTSM' as a dependency. display16_LTSM library contains the graphics, bitmaps, and font methods as well as font data and bitmap test data. Its also where the user sets options(debug, advanced graphics and frame buffer mode). 'display16_LTSM' is also written by author of this library. When you install 'ST7789_LTSM' with Arduino IDE. It should install 'display16_LTSM' as well after a prompt, if it does not you have to install it same way as 'ST7789_LTSM'. The 'display16_LTSM' project and readme is at URL github link
Code is commented for the 'doxygen' API generation tool. Documents on fonts, bitmaps and graphics can be found at the dependency 'display16_LTSM' repository, URL github link
In the example ino files. There are sections in "setup()" function where user can make adjustments to select for SPI type used, and screen size.
- USER OPTION 1 GPIO, SPI_SPEED + TYPE
- USER OPTION 2 SCREEN SECTION
USER OPTION 1 GPIO SPI SPEED
Two different constructors which one is called depends on 'bhardwareSPI' in example files, true for hardware spi, false for software SPI.
Hardware SPI:
Here the user can pass the SPI Bus freq in Hertz, Currently set to 8 Mhz, and the Reset, chip select and data or command line. Any GPIO can be used for these. The MOSI and CLk are tied to default MCU SPI interface GPIO.
Software SPI:
The optional GPIO software uS delay,which by default is zero. Setting this higher can be used to slow down Software SPI which may be beneficial on Fast MCU's. The 5 GPIO pins used. Any GPIO can be used for these.
USER OPTION 2 Screen size + Offsets
User can adjust screen pixel height, screen pixel width and x & y screen offsets. The function TFTInitScreenSize sets them.
Connections as setup in HELLO_WORLD.ino test file.
TFT PinNum | Pindesc | Hardware SPI | Software SPI |
---|---|---|---|
1 | LED | VCC | VCC |
2 | SCLK | MCU SPI CLK | GPIO12 |
3 | SDA | MCU MOSI CLK | GPIO13 |
4 | A0/DC | GPIO5 | GPIO5 |
5 | RESET | GPIO4 | GPIO4 |
6 | SS/CS | GPIO15 | GPIO15 |
7 | GND | GND | GND |
8 | VCC | VCC | VCC |
- NOTE: Connect LED backlight pin 1 thru a 150R/220R ohm resistor to 3.3/5V VCC.
- This is a 3.3V logic device do NOT connect the I/O logic lines to 5V logic device.
- You can connect VCC to 5V if there is a 3.3 volt regulator on back of TFT module.
- Pick any GPIO you like but on HW SPI mode SCLK and SDA will be tied to SPIO interface of MCU.
- Backlight on/off control is left to user.
- If no reset pin on display or hat, pass -1 as argument to disable.
Tested with both software and hardware SPI on:
- ESP32
- Arduino UNO R4 Minima
Frame buffer example is not supported on this board.
Compiled only (not fully hardware-tested) on:
- Arduino UNO
- ESP8266
- STM32 “Blue Pill”
Some examples on low-RAM MCUs will fail( insufficient memory ), numerous fonts and bitmap data are included.
Frame buffer mode requires sufficient dynamic memory for the buffer — see the README in display16_LTSM for details.
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 video ram , 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 VRAM you cannot see. For example if you have a 240X280 display in 0 degree rotation, the VRAM is same for ALL displays sizes.
- Set pixel Width = 240 and pixel height = 320
- Do not write to the missing 40 pixels in the Y-axis, you still can but it is inefficient.
Also if you have a 240x135 size display and you see the issue described in github issue 10 at PICO source port You can alternately apply the fix there to function AdjustWidthHeight().