summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorSergioPoverony <sergiopoverony@gmail.com>2021-12-06 06:25:41 +0500
committerGitHub <noreply@github.com>2021-12-05 17:25:41 -0800
commitc54c0fdc2c247f187e502d726be68be975fd9c07 (patch)
tree57219260810067ab29e0930f47ad9e24f6e4aa5c /keyboards
parent8c29902e5151df56bc8fb74301a6e8b365a2a8fe (diff)
[Keyboard] Update BM68RGB Caps Lock Backlight status indication (#13497)
Co-authored-by: Drashna Jael're <drashna@live.com>
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/kprepublic/bm68hsrgb/bm68hsrgb.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/kprepublic/bm68hsrgb/bm68hsrgb.c b/keyboards/kprepublic/bm68hsrgb/bm68hsrgb.c
index b405a9f204..734d2ee677 100644
--- a/keyboards/kprepublic/bm68hsrgb/bm68hsrgb.c
+++ b/keyboards/kprepublic/bm68hsrgb/bm68hsrgb.c
@@ -41,4 +41,12 @@ led_config_t g_led_config = { {
1, 1, 1, 4, 1, 1, 1, 1, 1, 1, // Ctrl, GUI, Alt, Space, RAlt, FN, Ctrl, Left, Down, Right
2, 2, 2, 2, 2, 2 // UNDERGLOW
} };
+
+//CAPS backlight
+__attribute__ ((weak))
+void rgb_matrix_indicators_user(void) {
+ if (host_keyboard_led_state().caps_lock) {
+ rgb_matrix_set_color(30, 0xFF, 0xFF, 0xFF);
+ }
+}
#endif