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

◆ update()

void fl::WLEDClient::update ( )

Update physical LED strip.

Calls controller->show() to write LED data to the physical strip. Typically called after making changes to LED colors.

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

54 {
55 FL_DBG("WLEDClient: update()");
56
57 if (!mController) {
58 return;
59 }
60
61 mController->show();
62}
fl::shared_ptr< IFastLED > mController
Definition client.h:148
#define FL_DBG
Definition log.h:388

References FL_DBG, and mController.