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

◆ CRGB() [2/7]

CRGB::CRGB ( uint8_t ir,
uint8_t ig,
uint8_t ib )
inlineconstexprnoexcept

Allow construction from red, green, and blue.

Parameters
irinput red value
iginput green value
ibinput blue value

Definition at line 105 of file crgb.h.

106 : r(ir), g(ig), b(ib)
107 {
108 }