Working with STM32F4 and SPI-TFT: ST7789 IPS 240×240 LCD

This guide shows how to interface the STM32F4 board with ST7789 TFT display.
The ST7789 TFT module contains a display controller with the same name: ST7789. It’s a color display that uses SPI interface protocol and requires 3, 4 or 5 control pins, it’s low cost and easy to use. This display is an IPS display, it comes in different sizes (1.3″, 1.54″ …) but all of them should have the same resolution of 240×240 pixel, this means it has 57600 pixels. 

TFT: Thin-Film Transistor.
SPI: Serial Peripheral Interface.
IPS: In-Plane Switching.

In this guide, we shall cover the following:

  • ST7789 connection with STM32F411 Nucleo-64
  • SPI setup.
  • Macros of DC and RST pin.
  • Write data and command functions.
  • LCD initializing.
  • Support functions.
  • Code.
  • Demo

1. ST7789 Connection with STM32F411 Nucleo-64:

The connection as following:

ST7789 TFTSTM32F411 Nucloe
5VVcc
GNDGND
SCLPA5 (SCK)
SDAPA7 (MOSI)
RESPA0
DCPA1

Hence the connection as following:

Notice that this TFT has no CS (Chip select) pin which is internally connected to ground.

2. SPI Setup:

Since this TFT has no CS pin, instead MODE0 of SPI, the module uses MODE3 of SPI:

For detailed operation and how to initialize the SPI, check this guide from here.

From the connection, PA5 and PA7 are used by SPI1 of STM32F411. Hence we start of by enabling clock access and set PA5, PA6 and PA7 to AF5, set PA0 and PA1 to GPIO output mode:

C

For SPI setup:

  • CPOL and CPHA is set to 1.
  • Divide the clock by 4 (Max of 25MHz for this module and the MCU is running at 100MHz).
  • Set the mode to master.
  • Software slave management.
  • Enable SPI module
C

Since we need to write multiple bytes of data, we need the following function:

C

3. Macros of CS and RST:

We shall use the following to control the RST(PA0) and DC(PA1) pins:

C

4. Write Command and data to the LCD:

In order to send command, we need to set the DC to low and write the data over SPI as following:

C

And we have 2 function to write the data as following:

  • Small data which is 1 byte
  • Data which takes an argument for how bytes to be written.
C

4. LCD Initializing:

In order to initialize the LCD, the following commands and data shall be sent:

C

5. Supporting function:

C

6. Code:

You may download the code from here

7. Demo:

Happy coding 🙂

23 Comments

  • Mehran Posted January 25, 2023 9:18 am

    Hi,
    kindly please inform me about which font editor you used for making font for this project.
    thank you in advance for your help

    • Husamuldeen Posted February 1, 2023 4:45 am

      I just used one found it on google.
      There are tons of fonts to chose from.

  • helloworld1 Posted May 25, 2023 9:22 am

    Hi. I use 170×320 display but when I want set rotation to horizontal its not work. I tried every 4 rotation modes but work only 0 and 2 but they are the same on my display. Please Help

    • notproblem Posted May 25, 2023 9:26 am

      Hello There!
      You must use ST7789_SetRotation(x);

    • Husamuldeen Posted May 25, 2023 11:23 am

      Not all tft support rotations in all orientation.

  • eloelo320 Posted May 25, 2023 11:19 am

    hi. I can’t display my image. someone help?

    • Husamuldeen Posted May 25, 2023 12:41 pm

      Hi,
      you need to convert the image to array in order to display the image.

      • Klaus Posted December 5, 2023 7:42 pm

        Hello, I”m trying to display an image, the color is 0xDCEF (some kind of orange), but when I put in the array, it displays as light green (fill screen by this color is ok). Black is black, White is white. Blue is blue. what the problem it may be. Thanks!

        • Husamuldeen Posted December 13, 2023 3:48 am

          Hi,
          Try to fill the screen with Red, then Green then Blue and see if there is something wrong.

  • stcoool Posted May 25, 2023 12:34 pm

    Hello everyone. I tried display simple logo monochrome. I use DrawImage function but always is somethink wrong. How to do this if i have bitmap logo?

    • Husamuldeen Posted May 25, 2023 12:40 pm

      You need to convert the image to array.
      There are tools on the internet to convert image to array.

  • Harsh Bhatt Posted June 21, 2023 9:50 am

    Hi we are using nrf52832 controller, so this code is use for in our case?

    • Husamuldeen Posted June 24, 2023 2:20 pm

      Hi,
      the TFT code will work with any MCU as long as you provide the correct driver for SPI and pin control.

      • Michael Posted August 20, 2024 6:06 am

        Hi. I Have some problem witch stm32C011. My configuration of SPI:
        void SPI_Init(void){
        // Włączenie zegara dla SPI1
        RCC->APBENR2 |= RCC_APBENR2_SPI1EN;

        // Konfiguracja SPI1
        SPI1->CR1 = 0;
        SPI1->CR2 = 0;
        SPI1->CR1 |= SPI_CR1_BR_1;
        SPI1->CR1 |= SPI_CR1_SSI;
        SPI1->CR1 |= SPI_CR1_SSM;

        SPI1->CR1 |= (SPI_CR1_CPOL|SPI_CR1_CPHA); //CPOL = 1, CPHA = 1
        SPI1->CR1 &=~ (SPI_CR1_BIDIMODE|
        SPI_CR1_RXONLY);
        SPI1->CR1 &=~ SPI_CR1_LSBFIRST;
        SPI1->CR1 |= SPI_CR1_MSTR; //Master mode

        SPI1->CR2 &=~ (SPI_CR2_DS); //8-DATA Size

        SPI1->CR2 |= SPI_CR2_TXEIE;
        SPI1->CR1 |= SPI_CR1_SPE; //SPI enable

        NVIC_EnableIRQ(SPI1_IRQn);
        NVIC_SetPriority(SPI1_IRQn, 0);

        }

        It’s taking me a few days now and I still don’t see the problem.

        • Husamuldeen Posted August 20, 2024 6:44 am

          Hi,
          in C011, use CubeMX to generate the code for the drivers.

          • Michael Posted August 20, 2024 8:15 am

            Well, okay, I use CubeMX for file generation but in general it writes on registers. The configuration seems correct for the ST7789 but it still won’t work

          • Husamuldeen Posted August 22, 2024 2:47 pm

            It should work without any issue.

  • STFun Posted August 22, 2024 9:49 am

    Hi. I need to set rotation in initialization?

    • Husamuldeen Posted August 22, 2024 2:46 pm

      Yes.

      • STFun Posted August 23, 2024 7:17 am

        Ok, I have problem: When i choos rotation 0 or 180 degree its fine. But rotation 90 and 270 dont work. its still like 180 degree orientation but in half display

        • Husamuldeen Posted September 15, 2024 4:11 am

          With this specific LCD, since it is square, the rotation doesn’t matter.

Add Comment

Leave a Reply to notproblem Cancel reply

Your email address will not be published. Required fields are marked *