mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
79 lines
2.1 KiB
C
79 lines
2.1 KiB
C
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "esp_err.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct led_strip_t led_strip_t; /*!< Type of LED strip */
|
||
|
|
||
|
/**
|
||
|
* @brief LED strip interface definition
|
||
|
*/
|
||
|
struct led_strip_t {
|
||
|
/**
|
||
|
* @brief Set RGB for a specific pixel
|
||
|
*
|
||
|
* @param strip: LED strip
|
||
|
* @param index: index of pixel to set
|
||
|
* @param red: red part of color
|
||
|
* @param green: green part of color
|
||
|
* @param blue: blue part of color
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK: Set RGB for a specific pixel successfully
|
||
|
* - ESP_ERR_INVALID_ARG: Set RGB for a specific pixel failed because of invalid parameters
|
||
|
* - ESP_FAIL: Set RGB for a specific pixel failed because other error occurred
|
||
|
*/
|
||
|
esp_err_t (*set_pixel)(led_strip_t *strip, uint32_t index, uint32_t red, uint32_t green, uint32_t blue);
|
||
|
|
||
|
/**
|
||
|
* @brief Refresh memory colors to LEDs
|
||
|
*
|
||
|
* @param strip: LED strip
|
||
|
* @param timeout_ms: timeout value for refreshing task
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK: Refresh successfully
|
||
|
* - ESP_FAIL: Refresh failed because some other error occurred
|
||
|
*
|
||
|
* @note:
|
||
|
* After updating the LED colors in the memory, a following invocation of this API is needed to flush colors to strip.
|
||
|
*/
|
||
|
esp_err_t (*refresh)(led_strip_t *strip);
|
||
|
|
||
|
/**
|
||
|
* @brief Clear LED strip (turn off all LEDs)
|
||
|
*
|
||
|
* @param strip: LED strip
|
||
|
* @param timeout_ms: timeout value for clearing task
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK: Clear LEDs successfully
|
||
|
* - ESP_FAIL: Clear LEDs failed because some other error occurred
|
||
|
*/
|
||
|
esp_err_t (*clear)(led_strip_t *strip);
|
||
|
|
||
|
/**
|
||
|
* @brief Free LED strip resources
|
||
|
*
|
||
|
* @param strip: LED strip
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK: Free resources successfully
|
||
|
* - ESP_FAIL: Free resources failed because error occurred
|
||
|
*/
|
||
|
esp_err_t (*del)(led_strip_t *strip);
|
||
|
};
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|