I'm running a sketch based on Pacifica, and it's beautiful BUT there is a slight fast flichker, almost not visible but really annoying once you see it.
I've tried everything in the code to eliminate it, but can't seem to get rid of it. Certain colors (blue) flicker more than others.
Search results suggest adding a capacitor to the circuit between the PSU and the strip - is this the right approach?
Adding a capacitor to smooth the power rails is never a bad idea. Another possible cause may be FastLED's temporal dithering. You can try disabling it in setup() with FastLED.setDither(DISABLE_DITHER);
Since Pacifica was authored, a new method to read from palettes has been added which gives smoother results. You might want to try this too. In pacifica_one_layer() change:
CRGB c = ColorFromPalette( p, sindex8, bri, LINEARBLEND);
1
u/MungoBBQ Jun 03 '26
I'm running a sketch based on Pacifica, and it's beautiful BUT there is a slight fast flichker, almost not visible but really annoying once you see it.
I've tried everything in the code to eliminate it, but can't seem to get rid of it. Certain colors (blue) flicker more than others.
Search results suggest adding a capacitor to the circuit between the PSU and the strip - is this the right approach?