FastLED 3.9.15
Loading...
Searching...
No Matches

◆ CRGBPalette16() [2/16]

CRGBPalette16::CRGBPalette16 ( const CRGB & c00,
const CRGB & c01,
const CRGB & c02,
const CRGB & c03,
const CRGB & c04,
const CRGB & c05,
const CRGB & c06,
const CRGB & c07,
const CRGB & c08,
const CRGB & c09,
const CRGB & c10,
const CRGB & c11,
const CRGB & c12,
const CRGB & c13,
const CRGB & c14,
const CRGB & c15 )
inline

Create palette from 16 CRGB values.

Definition at line 1012 of file colorutils.h.

1016 {
1017 entries[0]=c00; entries[1]=c01; entries[2]=c02; entries[3]=c03;
1018 entries[4]=c04; entries[5]=c05; entries[6]=c06; entries[7]=c07;
1019 entries[8]=c08; entries[9]=c09; entries[10]=c10; entries[11]=c11;
1020 entries[12]=c12; entries[13]=c13; entries[14]=c14; entries[15]=c15;
1021 };
CRGB entries[16]
the color entries that make up the palette

References entries.