97 lines
3.1 KiB
C
97 lines
3.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 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 muxed_led_strip_t muxed_led_strip_t; /*!< Type of LED strip */
|
|
|
|
/**
|
|
* @brief LED strip interface definition
|
|
*/
|
|
struct muxed_led_strip_t {
|
|
/**
|
|
* @brief Set RGB for a specific pixel
|
|
*
|
|
* @param strip: LED strip
|
|
* @param channel: channel of pixel to set
|
|
* @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)(muxed_led_strip_t *strip, uint32_t channel, uint32_t index, uint32_t red, uint32_t green, uint32_t blue);
|
|
|
|
/**
|
|
* @brief Set RGBW for a specific pixel. Similar to `set_pixel` but also set the white component
|
|
*
|
|
* @param strip: LED strip
|
|
* @param channel: channel of pixel to set
|
|
* @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
|
|
* @param white: separate white component
|
|
*
|
|
* @return
|
|
* - ESP_OK: Set RGBW color for a specific pixel successfully
|
|
* - ESP_ERR_INVALID_ARG: Set RGBW color for a specific pixel failed because of an invalid argument
|
|
* - ESP_FAIL: Set RGBW color for a specific pixel failed because other error occurred
|
|
*/
|
|
esp_err_t (*set_pixel_rgbw)(muxed_led_strip_t *strip, uint32_t channel, uint32_t index, uint32_t red, uint32_t green, uint32_t blue, uint32_t white);
|
|
|
|
/**
|
|
* @brief Refresh memory colors to LEDs
|
|
*
|
|
* @param strip: LED strip
|
|
* @param channel: which channel to refresh
|
|
*
|
|
* @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)(muxed_led_strip_t *strip, uint32_t channel);
|
|
|
|
/**
|
|
* @brief Clear LED strip (turn off all LEDs)
|
|
*
|
|
* @param strip: LED strip
|
|
* @param channel: which channel to clear
|
|
*
|
|
* @return
|
|
* - ESP_OK: Clear LEDs successfully
|
|
* - ESP_FAIL: Clear LEDs failed because some other error occurred
|
|
*/
|
|
esp_err_t (*clear)(muxed_led_strip_t *strip, uint32_t channel);
|
|
|
|
/**
|
|
* @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)(muxed_led_strip_t *strip);
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|