Found 42 other functions taking a
esp_lcd_panel_t
argument:
Mirror the LCD panel on specific axis
Swap/Exchange x and y axis
Turn on or off the display
Invert the color (bit-wise invert the color data line)
Create LCD panel for model ST7789
Set extra gap in x and y axis The gap is the space (in pixels) between the left/top sides of the LCD panel and the first row/column respectively of the actual contents displayed.
Create LCD panel for model SSD1306 esp_lcd_panel_ssd1306_config_t ssd1306_config = { .height = 32 }; esp_lcd_panel_dev_config_t panel_config = { .vendor_config = &ssd1306_config }; esp_lcd_panel_handle_t panel_handle = NULL; esp_lcd_new_panel_ssd1306(io_handle, &panel_config, &panel_handle);
Create LCD panel for model NT35510
Deinitialize the LCD panel