Increase length of possible delays between flashes

This commit is contained in:
Molly Nicholas 2015-11-07 17:44:06 -08:00
parent 82a1d2521c
commit 220b8e9d6a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ void lightningStrike(int pixel) {
strip.setPixelColor(pixel, strip.Color(scaledWhite, scaledWhite, scaledWhite));
strip.show();
delay(random(5, 80));
delay(random(5, 100));
currentDataPoint++;
currentDataPoint = currentDataPoint%NUM_Y_VALUES;
}