123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- #ifndef LED_STRIP_H
- #define LED_STRIP_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <driver/rmt.h>
- #include <driver/gpio.h>
- #include "freertos/FreeRTOS.h"
- #include <stddef.h>
- enum rgb_led_type_t {
- RGB_LED_TYPE_WS2812 = 0,
- RGB_LED_TYPE_SK6812 = 1,
- RGB_LED_TYPE_APA106 = 2,
- RGB_LED_TYPE_MAX,
- };
- struct led_color_t {
- uint8_t red;
- uint8_t green;
- uint8_t blue;
- };
- struct led_strip_t {
- const enum rgb_led_type_t rgb_led_type;
- uint32_t led_strip_length;
-
- rmt_channel_t rmt_channel;
-
- int rmt_interrupt_num;
- gpio_num_t gpio;
- struct led_color_t *led_strip_working;
- struct led_color_t *led_strip_showing;
- SemaphoreHandle_t access_semaphore;
- };
- bool led_strip_init(struct led_strip_t *led_strip);
- bool led_strip_set_pixel_color(struct led_strip_t *led_strip, uint32_t pixel_num, struct led_color_t *color);
- bool led_strip_set_pixel_rgb(struct led_strip_t *led_strip, uint32_t pixel_num, uint8_t red, uint8_t green, uint8_t blue);
- bool led_strip_get_pixel_color(struct led_strip_t *led_strip, uint32_t pixel_num, struct led_color_t *color);
- bool led_strip_show(struct led_strip_t *led_strip);
- bool led_strip_clear(struct led_strip_t *led_strip);
- #ifdef __cplusplus
- }
- #endif
- #endif
|