Add multiple LED channels from an initializer list.
Creates and registers multiple Channel-based LED controllers from a brace-enclosed list. Returns a vector of shared_ptrs for lifetime control.
- Parameters
-
| configs | Initializer list of ChannelConfig objects |
- Returns
- Vector of ChannelPtrs (one per config)
Example:
});
CRGB leds2[lengths[RedStrip]]
CRGB leds1[lengths[GreenStrip]]
CFastLED FastLED
Global LED strip management instance.
static fl::vector< fl::ChannelPtr > & channels()
stored ChannelPtrs to keep them alive
constexpr ChipsetTimingConfig makeTimingConfig() FL_NOEXCEPT
Convert compile-time CHIPSET type to runtime timing config.
Configuration for a single LED channel.
Definition at line 659 of file FastLED.cpp.hpp.
659 {
660 fl::vector<fl::ChannelPtr>
channels;
662
663 for (const auto& config : configs) {
665 }
666
668}
static void add(fl::ChannelPtr channel)
Add a Channel-based LED controller (from ChannelPtr)
References add(), and channels().