summaryrefslogtreecommitdiffstats
path: root/keyboards/skeletonkbd/frost68/frost68.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/skeletonkbd/frost68/frost68.c')
-rw-r--r--keyboards/skeletonkbd/frost68/frost68.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/skeletonkbd/frost68/frost68.c b/keyboards/skeletonkbd/frost68/frost68.c
new file mode 100644
index 0000000000..4bfd3fa28f
--- /dev/null
+++ b/keyboards/skeletonkbd/frost68/frost68.c
@@ -0,0 +1,18 @@
+// Copyright 2023 skeletonkbd (@skeletonkbd)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "quantum.h"
+
+bool rgb_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max) {
+ if (!rgb_matrix_indicators_advanced_user(led_min, led_max)) {
+ return false;
+ }
+ if (host_keyboard_led_state().caps_lock) {
+ for (uint8_t i = led_min; i < led_max; i++) {
+ if (g_led_config.flags[i] & LED_FLAG_INDICATOR) {
+ rgb_matrix_set_color(i, RGB_RED);
+ }
+ }
+ }
+ return false;
+}