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