Question about using FastLED.delay
I’ve seen both show and delay used consecutively in programs, such as in the Fire2012 example by @Mark_Kriegsman .
…
FastLED.show(); // display this frame
FastLED.delay(1000 / FRAMES_PER_SECOND);
This ends up calling show two times in a row, correct?
In this case should the normal show line be commented out if we’re going to use FastLED.delay?