Skip to content

Latest commit

 

History

History

lcd_3wire_spi_rgb

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
Supported ESP SoCs ESP32-S3
Supported LCD Controllers GC9503 ST7701 ST77903 ST77922

"3-wire SPI + RGB" LCD Example

Overview

This example demonstrates how to drive different model LCDs with 3-wire SPI + RGB interface bus and test them by displaying color bars.

How to Use

Step 1. Install SDK and dependencies

Step 2. Configure the libraries

  • [Optional] ESP32_Display_Panel:

  • [Optional] esp-lib-utils :

Step 3. Configure the example

Step 4. Configure Arduino IDE

  • Navigate to the Tools menu
  • Select the target board in the Board menu
  • Change the PSRAM option to OPI PSRAM if using ESP32S3R8 + RGB LCD, or Enabled if using ESP32P4 + MIPI-DSI LCD
  • Change the USB CDC On Boot option to Enabled if using USB port, or Disabled if using UART port. If this configuration differs from previous flashing, first enable Erase All Flash Before Sketch Upload, then it can be disabled after flashing.
  • Change other configurations as needed
  • see Configuring Arduino IDE for more information

Step 5. Compile and upload the project

  • Connect the board to your computer
  • Select the correct serial port
  • Click the upload button

Step 6. Check the serial output

  • Open the serial monitor and select the correct baud rate (like 115200)
  • Check the output logs

Serial Output

The following are the logs output when using the ST7701 LCD. The logs content may vary with different LCDs or different configurations, and it is provided for reference only.

...
Initializing backlight and turn it off
Initializing "3-wire SPI + RGB" LCD without config
[I][Panel][esp_lcd_st7701.c:0026](esp_lcd_new_panel_st7701): version: 1.1.1
Draw color bar from top left to bottom right, the order is B - G - R
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
LCD draw finish callback
Turn on the backlight
IDLE loop
LCD FPS: 98
LCD FPS: 98
IDLE loop
LCD FPS: 98
LCD FPS: 98
...

Troubleshooting

Please check the FAQ first to see if the same question exists. If not, please create a Github Issue. We will get back to you as soon as possible.