#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
template<typename Transport >
| Enumerator |
|---|
| RGB | |
| RBG | |
| GRB | |
| GBR | |
| BRG | |
| BGR | |
◆ Defaults()
template<typename Transport >
◆ color_order
template<typename Transport >
Pixel color channel ordering
◆ num_pixels
template<typename Transport >
Number of pixels/LEDs (max 64)
◆ transport_config
template<typename Transport >
| Transport::Config daisy::DotStar< Transport >::Config::transport_config |
Transport-specific configuration
The documentation for this struct was generated from the following file: