Newer
Older
ESP32-RetroPlay / main / tasks / led_task.h
@Jerry Xie Jerry Xie 19 days ago 297 bytes Initial Commit
// 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