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 110 of file crgb.h.

111 : r(ir), g(ig), b(ib)
112 {
113 }