-
Notifications
You must be signed in to change notification settings - Fork 443
/
led_strip_spi_sk9822.h
96 lines (84 loc) · 4 KB
/
led_strip_spi_sk9822.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* MIT License
*
* Copyright (c) 2020 Ruslan V. Uss <unclerus@gmail.com>
* 2021 Tomoyuki Sakurai <y@rombik.org>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/**
* @file led_strip_spi_sk9822.h
* @defgroup led_strip_spi_sk9822 led_strip_spi_sk9822
* @{
*
* Functions and macros for SK9822 LED strips.
*
* SPI data frame consists of:
*
* - A start frame of 32 zero bits (<0x00> <0x00> <0x00> <0x00>).
* - 32 bit LED frames for each LED in the string (<0xE0+brightness> <blue>
* <green> <red>).
* - A SK9822 reset frame of 32 zero bits (<0x00> <0x00> <0x00> <0x00>).
* - An end frame consisting of at least (n/2) bits of 1, where n is the
* number of LEDs in the string.
*
* For the details, see
* [SK9822 – a clone of the APA102?](https://cpldcpu.wordpress.com/2016/12/13/sk9822-a-clone-of-the-apa102/)
* and
* [Understanding the APA102 “Superled”](https://cpldcpu.wordpress.com/2014/11/30/understanding-the-apa102-superled/).
*
*/
#if !defined(__LED_STRIP_SPI_SK9822_H__)
#define __LED_STRIP_SPI_SK9822_H__
#include <esp_err.h>
#ifdef __cplusplus
extern "C" {
#endif
#define LED_STRIP_SPI_FRAME_SK9822_START_SIZE (4) ///< The size in bytes of start frame.
#define LED_STRIP_SPI_FRAME_SK9822_LED_SIZE (4) ///< The size in bytes of each LED frame.
#define LED_STRIP_SPI_FRAME_SK9822_LEDS_SIZE(N_PIXEL) (LED_STRIP_SPI_FRAME_SK9822_LED_SIZE * N_PIXEL) ///< Total size in bytes of all LED frames in a strip. `N_PIXEL` is the number of pixels in the strip.
#define LED_STRIP_SPI_FRAME_SK9822_RESET_SIZE (4) ///< The size in bytes of reset frame.
#define LED_STRIP_SPI_FRAME_SK9822_END_SIZE(N_PIXEL) ((N_PIXEL / 16) + 1) ///< The size in bytes of the last frame. `N_PIXEL` is the number of pixels in the strip.
#define LED_STRIP_SPI_FRAME_SK9822_LED_MSB3 (0xE0) ///< A magic number of [31:29] in LED frames. The bits must be 1 (APA102, SK9822)
#define LED_STRIP_SPI_FRAME_SK9822_LED_BRIGHTNESS_BITS (5) ///< Number of bits used to describe the brightness of the LED
#define LED_STRIP_SPI_BUFFER_SIZE(N_PIXEL) (\
LED_STRIP_SPI_FRAME_SK9822_START_SIZE + \
LED_STRIP_SPI_FRAME_SK9822_LEDS_SIZE(N_PIXEL) + \
LED_STRIP_SPI_FRAME_SK9822_RESET_SIZE + \
LED_STRIP_SPI_FRAME_SK9822_END_SIZE(N_PIXEL)) ///< A macro to caliculate required size of buffer. `N_PIXEL` is the number of pixels in the strip.
/**
* @brief Initialize the buffer of SK9822 strip.
* @param[in] strip LED strip descriptor to initialize
* @return `ESP_OK` on success
*/
esp_err_t led_strip_spi_sk9822_buf_init(led_strip_spi_t *strip);
/**
* @brief Set color of a pixel of SK9822 strip.
* @param[in] strip LED strip descriptor.
* @param[in] num Index of the LED pixel (zero-based).
* @param[in] color The color to set.
* @param[in] brightness The brightness to set, [0:100].
* @return `ESP_OK` on success.
*/
esp_err_t led_strip_spi_set_pixel_sk9822(led_strip_spi_t *strip, size_t num, rgb_t color, uint8_t brightness);
#ifdef __cplusplus
}
#endif
/**@}*/
#endif