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.