Lumitronix_Iflex_Pro_Workshop
Library to interact with the iFlexPro
RgbColorIndexes.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2 RgbColorIndexes provides constants for color element vector access on
3  RGB(w) Color Objects
4 
5 Written by Michael C. Miller.
6 
7 I invest time and resources providing this open source code,
8 please support me by dontating (see https://github.com/Makuna)
9 
10 -------------------------------------------------------------------------
11 This file is part of the LUMITRONIX_iFlex_Workshop library.
12 
13 LumitronixIFlexBus is free software: you can redistribute it and/or modify
14 it under the terms of the GNU Lesser General Public License as
15 published by the Free Software Foundation, either version 3 of
16 the License, or (at your option) any later version.
17 
18 LumitronixIFlexBus is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU Lesser General Public License for more details.
22 
23 You should have received a copy of the GNU Lesser General Public
24 License along with LumitronixIFlex. If not, see
25 <http://www.gnu.org/licenses/>.
26 -------------------------------------------------------------------------*/
27 
28 #pragma once
29 
30 const uint8_t ColorIndexR = 0;
31 const uint8_t ColorIndexG = 1;
32 const uint8_t ColorIndexB = 2;
33 const uint8_t ColorIndexW = 3;
34 const uint8_t ColorIndexWW = 3; // warmer white
35 const uint8_t ColorIndexCW = 4; // cooler white
const uint8_t ColorIndexG
Definition: RgbColorIndexes.h:31
const uint8_t ColorIndexB
Definition: RgbColorIndexes.h:32
const uint8_t ColorIndexW
Definition: RgbColorIndexes.h:33
const uint8_t ColorIndexWW
Definition: RgbColorIndexes.h:34
const uint8_t ColorIndexR
Definition: RgbColorIndexes.h:30
const uint8_t ColorIndexCW
Definition: RgbColorIndexes.h:35