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

◆ clear() [1/2]

void CFastLED::clear ( bool writeData = false)

Clear the leds, wiping the local array of data.

Optionally you can also send the cleared data to the LEDs.

Parameters
writeDatawhether or not to write out to the leds as well

Definition at line 362 of file FastLED.cpp.hpp.

362 {
363 if(writeData) {
364 showColor(CRGB(0,0,0), 0);
365 }
366 clearData();
367}
void showColor(const CRGB &color, fl::u8 scale)
Set all leds on all controllers to the given color/scale.
void clearData()
Clear out the local data array.
fl::CRGB CRGB
Definition crgb.h:25

References clearData(), and showColor().

+ Here is the call graph for this function: