Page 1 of 1

Help with LCD RGB Timings on ESP32-S3

Posted: Thu Apr 11, 2024 8:20 am
by robizzar72
Let me understand please wich value should I choose from the LCD's datasheet.
Theare are min, typ, max values!

Code: Select all

        .timings = {
            .pclk_hz = (20 * 1000 * 1000),
            .h_res = LCD_H_RES,
            .v_res = LCD_V_RES,
            // The following parameters should refer to LCD spec
            .hsync_back_porch = 46,
            .hsync_front_porch = 210,
            .hsync_pulse_width = 40,
            .vsync_back_porch = 23,
            .vsync_front_porch = 22,
            .vsync_pulse_width = 1,
            .flags.pclk_active_neg = true,
        },
The LCD datasheets reports: see attached images.
Thanks!