Can someone point me in the right direction? I have a small test Holiday light setup using a 9’ WS2812B strip. I have it running from a Arduino Uno and it’s currently running the Adafruit library with several different animations.
I also tried the FastLED 100 Demo sketch and I really like the Juggle and BPM animations, and the trusty ol’ Rainbow, of course! But I want to add a Candy Cane and a Color Wipe animation to the FastLED sketch.
I tried copying and pasting what looked to be the most relevant portions of a stand-alone Candy Cane sketch and a Color Wipe sketch but I failed.
My code is linked below on a github page, the part I attempted to add is at the very end, and commented with // BEGIN EXPERIMENT — Pasted ColorWipe CODE — BEGIN EXPERIMENT
Currently, the only thing the function colorwipe() does is run FastLED.show(). So it’s just re-displaying whatever was previously displayed since the pixel values are not being modified in any way in colorwipe(). Seems like it’s missing doing something there.