Hi there!,
I’m working on a sketch with multiple ledstrips and multiple sensors.
I defined each ledstrips by their own;
FastLED.addLeds<NEOPIXEL, 6>(ledsA, stripA_leds);
FastLED.addLeds<NEOPIXEL, 3>(ledsB, stripB_leds);
I would like to control the brightness of each ledstrip individually with FastLED.setBrightness();. Is there any possibility to control individually like this?
I know it is possible with HSV, but then the variable should be included into the effect code of fading up. Would like to control the global brightness per defined ledstrip.
Thanks in advance!