// button_task.h #ifndef BUTTON_TASK_H #define BUTTON_TASK_H #include "esp_err.h" // For esp_err_t /** * @brief Initializes and starts the button monitoring task. * @return ESP_OK if the task was created successfully, an error code otherwise. */ esp_err_t start_button_monitor_task(void); #endif // BUTTON_TASK_H