Search found 2 matches

by andres-st
Thu Nov 21, 2024 5:27 pm
Forum: ESP IoT Solution
Topic: How to draw in the EK79007 for the esp32-p4 dev kit
Replies: 3
Views: 734

Re: How to draw in the EK79007 for the esp32-p4 dev kit

Thanks for the response! I believe I am doing the same that you, mine is a bit different, static void test_draw_color (esp_lcd_panel_handle_t * panel_handle, uint16_t h_res, uint16_t v_res) { uint16_t *color = (uint16_t *) heap_caps_calloc (1, h_res * v_res, MALLOC_CAP_DMA); if (color == NULL) { ESP...
by andres-st
Sat Nov 16, 2024 8:01 pm
Forum: ESP IoT Solution
Topic: How to draw in the EK79007 for the esp32-p4 dev kit
Replies: 3
Views: 734

How to draw in the EK79007 for the esp32-p4 dev kit

Hi! :D I want to make a simple code where the screen goes to red, green and blue in a loop to practice. But I don't find how to make it work. static void test_draw_color_pattern (esp_lcd_panel_handle_t * panel_handle, uint16_t h_res, uint16_t v_res) { uint16_t *color = (uint16_t *) heap_caps_calloc ...