summaryrefslogtreecommitdiff
path: root/keyboards/gray_studio/think65v3/think65v3.c
diff options
context:
space:
mode:
authorYizhen Liu <62583086+edwardslau@users.noreply.github.com>2023-08-15 02:45:38 +0800
committerGitHub <noreply@github.com>2023-08-14 12:45:38 -0600
commit31a9d2d00dc732ca29be2213dbf915d6f6ffc76d (patch)
tree1ddb2f37c469ec52d17d293dc72bb2d6fc4aa852 /keyboards/gray_studio/think65v3/think65v3.c
parent6038023cfb95cf36d19ef066ee1b314ab24294ee (diff)
[keyboard] Graystudio Think6.5 V3 Support Revised (#21560)
Co-authored-by: jack <0x6a73@protonmail.com> Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/gray_studio/think65v3/think65v3.c')
-rw-r--r--keyboards/gray_studio/think65v3/think65v3.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/gray_studio/think65v3/think65v3.c b/keyboards/gray_studio/think65v3/think65v3.c
new file mode 100644
index 0000000000..04dd85406f
--- /dev/null
+++ b/keyboards/gray_studio/think65v3/think65v3.c
@@ -0,0 +1,22 @@
+// Copyright 2023 Yizhen Liu (@edwardslau)
+// SPDX-License-Identifier: GPL-2.0
+#include "quantum.h"
+const rgblight_segment_t PROGMEM my_capslock_layer[] = RGBLIGHT_LAYER_SEGMENTS(
+ {0,6, HSV_WHITE}
+);
+const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(
+ my_capslock_layer
+);
+
+void keyboard_post_init_kb(void) {
+ // Enable the LED layers
+ rgblight_layers = my_rgb_layers;
+ keyboard_post_init_user();
+}
+bool led_update_kb(led_t led_state) {
+ bool res = led_update_user(led_state);
+ if (res) {
+ rgblight_set_layer_state(0, led_state.caps_lock);
+ }
+ return res;
+}