I’m using multiple APA102 LED strips.
FastLED describes how to achieve 4 output lines with 2 SPI channels by multiplexing:
For Teensy 3.2 this works for 7, 14 and 11, 13
FastLED.addLeds<APA102, 7, 13>(leds,NUM_LEDS);
FastLED.addLeds<APA102, 7, 14>(leds,NUM_LEDS);
FastLED.addLeds<APA102, 11...