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

◆ fill_solid() [3/3]

void fl::fill_solid ( fl::span< CRGB > leds,
const CRGB & color )
inline

Fill a range of LEDs with a solid color.

Parameters
targetArraya pointer to the LED array to fill
numToFillthe number of LEDs to fill in the array
colorthe color to fill with

Definition at line 39 of file fill.h.

39 {
40 fill_solid(leds.data(), static_cast<int>(leds.size()), color);
41}
fl::CRGB leds[NUM_LEDS]
void fill_solid(CRGB *targetArray, int numToFill, const CRGB &color)
Fill a range of LEDs with a solid color.
Definition fill.cpp.hpp:9

References fill_solid(), FL_NOEXCEPT, and leds.

+ Here is the call graph for this function: