From 3288c108679eb3bce1504df94e5fc10a8b3aad92 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 31 Dec 2021 19:58:39 -0700 Subject: [PATCH] fade no longer clears everything to black --- wallart.ino | 1 - 1 file changed, 1 deletion(-) diff --git a/wallart.ino b/wallart.ino index 2aacc49..b6dd84e 100644 --- a/wallart.ino +++ b/wallart.ino @@ -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); }