FastLED 3.9.15
Loading...
Searching...
No Matches
eorder.h
Go to the documentation of this file.
1
3
4#pragma once
5
6namespace fl {
7
13enum EOrder {
14 RGB=0012,
15 RBG=0021,
16 GRB=0102,
17 GBR=0120,
18 BRG=0201,
19 BGR=0210
20};
21
22// After EOrder is applied this is where W is inserted for RGBW.
23enum EOrderW {
24 W3 = 0x3,
25 W2 = 0x2,
26 W1 = 0x1,
27 W0 = 0x0,
29};
30
31} // namespace fl
EOrder
RGB color channel orderings, used when instantiating controllers to determine what order the controll...
Definition eorder.h:13
@ RBG
Red, Blue, Green (0021)
Definition eorder.h:15
@ BGR
Blue, Green, Red (0210)
Definition eorder.h:19
@ GBR
Green, Blue, Red (0120)
Definition eorder.h:17
@ GRB
Green, Red, Blue (0102)
Definition eorder.h:16
@ BRG
Blue, Red, Green (0201)
Definition eorder.h:18
@ RGB
Red, Green, Blue (0012)
Definition eorder.h:14
EOrderW
Definition eorder.h:23
@ W2
White is third.
Definition eorder.h:25
@ W3
White is fourth.
Definition eorder.h:24
@ WDefault
Definition eorder.h:28
@ W0
White is first.
Definition eorder.h:27
@ W1
White is second.
Definition eorder.h:26
IMPORTANT!
Definition crgb.h:20