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

◆ operator/()

FASTLED_FORCE_INLINE CRGB fl::operator/ ( const CRGB & p1,
u8 d )

Divide each of the channels by a constant.

Definition at line 781 of file crgb.h.

782{
783 return CRGB( p1.r/d, p1.g/d, p1.b/d);
784}
fl::CRGB CRGB
Definition video.h:15

References FASTLED_FORCE_INLINE, and FL_NOEXCEPT.