// led_task.h #ifndef LED_TASK_H #define LED_TASK_H #include "esp_err.h" // For esp_err_t /** * @brief Initializes and starts the LED control task. * @return ESP_OK if the task was created successfully, an error code otherwise. */ esp_err_t start_led_control_task(void); #endif // LED_TASK_H