Flags for FastLED.clear() to control what state gets cleared/reset.
These flags can be combined using bitwise OR (|) to clear multiple settings at once. Each flag controls a different aspect of FastLED's global state.
@ CHANNELS
Remove all channels from controller list.
@ BRIGHTNESS
Reset global brightness to 255.
@ CHANNEL_ENGINES
Clear all channel drivers from ChannelManager.
@ POWER_SETTINGS
Reset power management (setMaxPowerInMilliWatts)
@ FPS_COUNTER
Reset FPS tracking counter to 0.
@ REFRESH_RATE
Reset refresh rate limiting to unlimited.
CFastLED FastLED
Global LED strip management instance.
| Enumerator |
|---|
| NONE | Clear nothing (no-op)
|
| CHANNELS | Remove all channels from controller list.
|
| POWER_SETTINGS | Reset power management (setMaxPowerInMilliWatts)
|
| BRIGHTNESS | Reset global brightness to 255.
|
| REFRESH_RATE | Reset refresh rate limiting to unlimited.
|
| FPS_COUNTER | Reset FPS tracking counter to 0.
|
| CHANNEL_ENGINES | Clear all channel drivers from ChannelManager.
|
Definition at line 578 of file FastLED.h.
578 : fl::u32 {
586};
@ NONE
Clear nothing (no-op)