#ifndef DISPLAY_TASK_H #define DISPLAY_TASK_H #include "esp_err.h" // Function to start the display task esp_err_t start_display_task(void); // Function to update text on the display (example) void display_update_text(const char *lines[], size_t num_lines); #endif // DISPLAY_TASK_H