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

◆ init()

template<typename CONTROLLER, EOrder RGB_ORDER = GRB>
void RGBWEmulatedController< CONTROLLER, RGB_ORDER >::init ( )
inlineoverrideprivatevirtual

Initialize the controller and disable the base controller.

The base controller is kept disabled to prevent it from refreshing with its own settings. We only enable it temporarily during show().

Implements fl::CLEDController.

Definition at line 278 of file chipsets.h.

278 {
279 mController.init();
280 mController.setEnabled(false);
281 }
ControllerT mController
The underlying RGB controller instance.
Definition chipsets.h:308

References mController.