From 08b2dc58e2b1311eb46e52c707e53d374003aa69 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sun, 4 Jun 2023 22:58:36 +0200 Subject: [PATCH] Added led on reboot to bootloader --- firmware/src/cmdr_keyboard.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/src/cmdr_keyboard.cpp b/firmware/src/cmdr_keyboard.cpp index f38efab..e56e676 100755 --- a/firmware/src/cmdr_keyboard.cpp +++ b/firmware/src/cmdr_keyboard.cpp @@ -235,6 +235,8 @@ uint8_t process_keys() { /* Release all keys and reboot to bootloader */ Keyboard.releaseAll(); + status_led.on(); + status_led.update(); delay(200); // Wait for usb to settle before rebooting _reboot_Teensyduino_(); }