Page 1 of 1

What are esp-idf supported LCD/TFT displays?

Posted: Fri Apr 21, 2023 8:07 am
by zazas321
Hello. In my project, I need to add display some information on the lcd or tft display.

In the esp-idf examples I have only found the following:

examples -> peripherals -> lcd ->lvgl
examples -> peripherals -> lcd ->tjpgd


I have launched tjpgd and by inspecting the code I found :

Code: Select all

ESP_ERROR_CHECK(esp_lcd_new_panel_st7789(io_handle, &panel_config, &panel_handle));
So from what I understand this example is intended to control st7789 display. I want to choose whatever displayed that is already supported by esp-idf and I can find example code for this display so I spend least amount of time struggling to get it to work.

Re: What are esp-idf supported LCD/TFT displays?

Posted: Fri Apr 21, 2023 11:13 am
by MicroController

Re: What are esp-idf supported LCD/TFT displays?

Posted: Thu Apr 27, 2023 12:25 pm
by bidrohini
I think here you will get the names of all the compatible displays: https://github.com/nopnop2002/esp-idf-parallel-tft
One display that is supported by ESPressif-IDF is GC9A01 TFT Rounded Display with LVGL.

Re: What are esp-idf supported LCD/TFT displays?

Posted: Thu Apr 27, 2023 12:35 pm
by jesse_a_b
There's several libraries on Arduino, TFT_eSPI, MCUFRIEND, GFX, etc.
I haven't found a LCD/TFT display, parallel or serial, that could not work with esp32.