Ok folks, i need some advice as I need to decide on a route to take as my project deadline is getting too close.
I have 800 leds
100 leds on 8 different pins (Teensy + Octo Adaptor)
Im currently using 1 array, many strips:
FastLED.addLeds<WS2812B, 2, GRB>(leds, 100* 0, 100);
FastLED.addLeds<WS2812B, 14, GRB>(leds, 100* 1, 100);
FastLED.addLeds<WS2812B, 7, GRB>(leds, 100* 2, 100);
FastLED.addLeds<WS2812B, 8, GRB>(leds, 100* 3, 100);
FastLED.addLeds<WS2812B, 6, GRB>(leds, 100* 4, 100);
FastLED.addLeds<WS2812B, 20, GRB>(leds, 100* 5, 100);
FastLED.addLeds<WS2812B, 21, GRB>(leds, 100* 6, 100);
FastLED.addLeds<WS2812B, 5, GRB>(leds, 100* 7, 100);
I would really like to use the Noise, Stefan has built some awesome stuff from it, which looks amazing on my rig and Id really like to add some other stuff to it as well.
However, it will not run with the 100 * offset. If I lower the offset it will work and look awesome, but it will break my other effects such as the Fire2014.
Is there anyway to control that offset for the array after the FastLED.addleds setup??
I just dont have enough time to dive into the gridmap rabbit hole.
If I keep the normal offset:
I can add my equalizer effects (each strip = different eq band, etc)
I can run fire2014 with the strips acting separate flames
If I lower the offset, i have to drop those two and any others that are specific to a strip.
I keep changing my mind and need help to get pushed one way or the other lol