#include <dotstar.h>
|
enum | ColorOrder : uint8_t {
RGB = ((0 << 4) | (1 << 2) | (2))
, RBG = ((0 << 4) | (2 << 2) | (1))
, GRB = ((1 << 4) | (0 << 2) | (2))
, GBR = ((2 << 4) | (0 << 2) | (1))
,
BRG = ((1 << 4) | (2 << 2) | (0))
, BGR = ((2 << 4) | (1 << 2) | (0))
} |
|
◆ ColorOrder
Enumerator |
---|
RGB | |
RBG | |
GRB | |
GBR | |
BRG | |
BGR | |
◆ Defaults()
◆ color_order
Pixel color channel ordering
◆ num_pixels
Number of pixels/LEDs (max 64)
◆ transport_config
Transport-specific configuration
The documentation for this struct was generated from the following file: