From 3be78597837bbcba7e5010b8ef8a00e4b71e90c5 Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Mon, 2 Apr 2018 00:27:47 -0500 Subject: [PATCH] Slow down the chase to reflect the recent optimizations Really, this should probably use a timer, but simply changing the `chase_threshold` value is simpler for now. --- src/Kaleidoscope-LEDEffect-Chase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope-LEDEffect-Chase.h b/src/Kaleidoscope-LEDEffect-Chase.h index 1002b8ac..24da4d34 100644 --- a/src/Kaleidoscope-LEDEffect-Chase.h +++ b/src/Kaleidoscope-LEDEffect-Chase.h @@ -16,7 +16,7 @@ class LEDChaseEffect : public LEDMode { int8_t chase_sign = 1; //negative values when it's going backwar uint8_t chase_pixels = 5; uint8_t current_chase_counter = 0; - static const uint8_t chase_threshold = 20; + static const uint8_t chase_threshold = 150; }; }