FastLED
3.9.3
Loading...
Searching...
No Matches
eorder.h
1
#pragma once
2
#include "namespace.h"
3
4
FASTLED_NAMESPACE_BEGIN
5
11
enum
EOrder {
12
RGB=0012,
13
RBG=0021,
14
GRB=0102,
15
GBR=0120,
16
BRG=0201,
17
BGR=0210
18
};
19
20
// After EOrder is applied this is where W is inserted for RGBW.
21
enum
EOrderW {
22
W3 = 0x3,
23
W2 = 0x2,
24
W1 = 0x1,
25
W0 = 0x0,
26
WDefault = W3
27
};
28
29
FASTLED_NAMESPACE_END
30
src
eorder.h
Generated on Thu Nov 14 2024 00:00:34 for FastLED by
1.11.0