| 522 | }; |
| 523 | |
| 524 | static ChannelPtr makeChannel(CRGB* leds, int n) { |
| 525 | auto timing = makeTimingConfig<TIMING_WS2812_800KHZ>(); |
| 526 | ChannelOptions opts; |
| 527 | ChannelConfig config(1, timing, fl::span<CRGB>(leds, n), RGB, opts); |
| 528 | return Channel::create(config); |
| 529 | } |
| 530 | |
| 531 | static bool controllerInList(CLEDController* ctrl) { |
| 532 | CLEDController* cur = CLEDController::head(); |
no test coverage detected