|
| void | fl::fill_gradient_RGB (CRGB *leds, u16 numLeds, const CRGB &c1, const CRGB &c2) FL_NOEXCEPT |
| | Fill a range of LEDs with a smooth RGB gradient between two RGB colors.
|
| |
| void | fl::fill_gradient_RGB (CRGB *leds, u16 numLeds, const CRGB &c1, const CRGB &c2, const CRGB &c3) FL_NOEXCEPT |
| | Fill a range of LEDs with a smooth RGB gradient between three RGB colors.
|
| |
| void | fl::fill_gradient_RGB (CRGB *leds, u16 numLeds, const CRGB &c1, const CRGB &c2, const CRGB &c3, const CRGB &c4) FL_NOEXCEPT |
| | Fill a range of LEDs with a smooth RGB gradient between four RGB colors.
|
| |
| void | fl::fill_gradient_RGB (CRGB *leds, u16 startpos, CRGB startcolor, u16 endpos, CRGB endcolor) FL_NOEXCEPT |
| | Fill a range of LEDs with a smooth RGB gradient between two RGB colors.
|
| |
| void | fl::fill_rainbow (CHSV *targetArray, int numToFill, fl::u8 initialhue, fl::u8 deltahue=5) FL_NOEXCEPT |
| | Fill a range of LEDs with a rainbow of colors.
|
| |
| void | fl::fill_rainbow (CRGB *targetArray, int numToFill, fl::u8 initialhue, fl::u8 deltahue=5) FL_NOEXCEPT |
| | Fill a range of LEDs with a rainbow of colors.
|
| |
| void | fl::fill_rainbow_circular (CHSV *targetArray, int numToFill, fl::u8 initialhue, bool reversed=false) FL_NOEXCEPT |
| | Fill a range of LEDs with a rainbow of colors, so that the hues are continuous between the end of the strip and the beginning.
|
| |
| void | fl::fill_rainbow_circular (CRGB *targetArray, int numToFill, fl::u8 initialhue, bool reversed=false) FL_NOEXCEPT |
| | Fill a range of LEDs with a rainbow of colors, so that the hues are continuous between the end of the strip and the beginning.
|
| |
| void | fl::fill_solid (CHSV *targetArray, int numToFill, const CHSV &color) FL_NOEXCEPT |
| | Fill a range of LEDs with a solid color.
|
| |
| void | fl::fill_solid (CRGB *targetArray, int numToFill, const CRGB &color) FL_NOEXCEPT |
| | Fill a range of LEDs with a solid color.
|
| |