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

◆ clearSegment()

void fl::WLEDClient::clearSegment ( )

Clear the segment range (operate on full LED array)

Restores operations to affect the entire LED array. Delegates to controller's clearSegment method.

Definition at line 90 of file client.cpp.hpp.

90 {
91 FL_DBG("WLEDClient: clearSegment()");
92
93 if (!mController) {
94 return;
95 }
96
97 mController->clearSegment();
98}
fl::shared_ptr< IFastLED > mController
Definition client.h:148
#define FL_DBG
Definition log.h:388

References FL_DBG, and mController.