fade no longer clears everything to black

This commit is contained in:
Neale Pickett 2021-12-31 19:58:39 -07:00
parent 30cc1dae54
commit 3288c10867
1 changed files with 0 additions and 1 deletions

View File

@ -12,7 +12,6 @@ void fade() {
int reps = 300 + random(GRIDLEN);
int hue = random(256);
for (int i = 0; i < reps; i++) {
FastLED.clear();
for (int pos = 0; pos < 8; pos++) {
grid[(i+pos) % GRIDLEN] = CHSV(hue, 255, pos * 32);
}