summaryrefslogtreecommitdiff
path: root/keyboards/inett_studio/sqx/hotswap
diff options
context:
space:
mode:
authorMatrix Zou <matrix.zj@qq.com>2021-02-04 01:18:36 +0400
committerGitHub <noreply@github.com>2021-02-03 13:18:36 -0800
commitc5e29b25c45ea1f95ec2508f50507e6ad94d4e2a (patch)
tree360893ab16ed186c1030f1d7433c2aedd8aba3d5 /keyboards/inett_studio/sqx/hotswap
parentfaa6c93648f4fc6a538a66478f646aef6661894f (diff)
Update iNETT Studio Square.X RGB Light (#11723)
* Add Caps Lock indicators support * Fix 'a' flag error for RGB Light Mode
Diffstat (limited to 'keyboards/inett_studio/sqx/hotswap')
-rw-r--r--keyboards/inett_studio/sqx/hotswap/hotswap.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/keyboards/inett_studio/sqx/hotswap/hotswap.c b/keyboards/inett_studio/sqx/hotswap/hotswap.c
index 773b0b0b0a..be8985c87e 100644
--- a/keyboards/inett_studio/sqx/hotswap/hotswap.c
+++ b/keyboards/inett_studio/sqx/hotswap/hotswap.c
@@ -137,7 +137,7 @@ led_config_t g_led_config = {
{128, 48},{160, 48},{176, 48},{192, 48},{160, 64},{180, 64},{200, 64},{224, 64}
},
{
- 4, 4, 4, 4, 4, 4, 4, 1,
+ 4, 4, 4, 4, 4, 4, 4, 4,
1, 1, 4, 1, 1, 1, 1,
1, 4, 4, 4, 4, 4, 4, 4,
@@ -152,6 +152,13 @@ led_config_t g_led_config = {
}
};
+__attribute__ ((weak))
+void rgb_matrix_indicators_user(void) {
+ if (host_keyboard_led_state().caps_lock) {
+ rgb_matrix_set_color(8, 0xFF, 0x0, 0x0);
+ }
+}
+
#endif //RGB_MATRIX_ENABLE
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {