Task #15: Playing with Fire

@lnjustin, since your setup is unique, you’re going to have to experiment a little to get the best look.

I think @jeff’s “Candles/Flickerers” pattern from the thread linked below would be a good place to start. Once you’ve got the code loaded, an easy mod that gives your ring a nice flicker all the way around is this:

  • find the line that reads
    if (candle % 2 == 0) { hsv(0, 0, 0); return } // Candle every three
    (it’s somewhere around line 53)
    and comment it out (so it reads)
    //if (candle % 2 == 0) { hsv(0, 0, 0); return } // Candle every three

The Sparkfire pattern from the library looks like it might be good for this job with a little tweaking too!

2 Likes