From aab19f505ac643e5d419e68ac8864fe11743a621 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 13 Aug 2017 21:00:07 -0700 Subject: [PATCH] Tweak the bootgreeting timeout so that it turns off at the bottom end of a pulse --- src/Kaleidoscope-LEDEffect-BootGreeting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope-LEDEffect-BootGreeting.cpp b/src/Kaleidoscope-LEDEffect-BootGreeting.cpp index 2b3ff973..9ea34e8e 100644 --- a/src/Kaleidoscope-LEDEffect-BootGreeting.cpp +++ b/src/Kaleidoscope-LEDEffect-BootGreeting.cpp @@ -31,7 +31,7 @@ void BootGreetingEffect::loopHook(const bool post_clear) { if (!post_clear || done_) return; - if (millis() > 10000) { + if (millis() > 9200) { done_ = true; return; }