From 1b95f1ce8fffd1a4e56fb822c585bfb9750e4af3 Mon Sep 17 00:00:00 2001 From: Josh Goebel Date: Tue, 21 Mar 2017 14:15:20 -0400 Subject: [PATCH] Remove extra 50ms delay added by de1725 Removes the 50ms debounce delay that was added when we allow the boot logo to be skipped by reducing the boot logo delay by 50ms. --- src/Arduboy2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Arduboy2.cpp b/src/Arduboy2.cpp index 21609c3..3ae0e74 100644 --- a/src/Arduboy2.cpp +++ b/src/Arduboy2.cpp @@ -121,7 +121,7 @@ void Arduboy2Base::bootLogo() } } - delay(750); + delay(700); digitalWrite(BLUE_LED, RGB_OFF); bootLogoExtra();