From b243b0c1c5c08eaadf184be354e998fe7d8b0ba1 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Wed, 8 Jun 2022 23:04:17 +0200 Subject: [PATCH] Model100: Set the BootGreetingEffect color to green Signed-off-by: Gergely Nagy --- examples/Devices/Keyboardio/Model100/Model100.ino | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/Devices/Keyboardio/Model100/Model100.ino b/examples/Devices/Keyboardio/Model100/Model100.ino index 6f5c4240..0d56ab84 100644 --- a/examples/Devices/Keyboardio/Model100/Model100.ino +++ b/examples/Devices/Keyboardio/Model100/Model100.ino @@ -557,6 +557,10 @@ void setup() { // First, call Kaleidoscope's internal setup function Kaleidoscope.setup(); + // Set the hue of the boot greeting effect to something that will result in a + // nice green color. + BootGreetingEffect.hue = 85; + // While we hope to improve this in the future, the NumPad plugin // needs to be explicitly told which keymap layer is your numpad layer NumPad.numPadLayer = NUMPAD;