Fix Per Key LED Indicator Callbacks (#18450)
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
@@ -135,10 +135,15 @@
|
||||
} };
|
||||
|
||||
|
||||
__attribute__ ((weak)) void rgb_matrix_indicators_user(void) {
|
||||
bool rgb_matrix_indicators_kb(void) {
|
||||
if (!rgb_matrix_indicators_user()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (host_keyboard_led_state().caps_lock) {
|
||||
rgb_matrix_set_color(44, 0xFF, 0xFF, 0xFF);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@@ -135,10 +135,14 @@
|
||||
} };
|
||||
|
||||
|
||||
__attribute__ ((weak)) void rgb_matrix_indicators_user(void) {
|
||||
bool rgb_matrix_indicators_kb(void) {
|
||||
if (!rgb_matrix_indicators_user()) {
|
||||
return false;
|
||||
}
|
||||
if (host_keyboard_led_state().caps_lock) {
|
||||
rgb_matrix_set_color(44, 0xFF, 0xFF, 0xFF);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@@ -136,20 +136,14 @@
|
||||
} };
|
||||
|
||||
|
||||
void suspend_power_down_kb(void) {
|
||||
rgb_matrix_set_suspend_state(true);
|
||||
suspend_power_down_user();
|
||||
}
|
||||
|
||||
void suspend_wakeup_init_kb(void) {
|
||||
rgb_matrix_set_suspend_state(false);
|
||||
suspend_wakeup_init_user();
|
||||
}
|
||||
|
||||
__attribute__ ((weak)) void rgb_matrix_indicators_user(void) {
|
||||
bool rgb_matrix_indicators_kb(void) {
|
||||
if (!rgb_matrix_indicators_user()) {
|
||||
return false;
|
||||
}
|
||||
if (host_keyboard_led_state().caps_lock) {
|
||||
rgb_matrix_set_color(45, 0xFF, 0xFF, 0xFF);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@@ -71,10 +71,14 @@
|
||||
} };
|
||||
|
||||
|
||||
__attribute__ ((weak)) void rgb_matrix_indicators_user(void) {
|
||||
bool rgb_matrix_indicators_kb(void) {
|
||||
if (!rgb_matrix_indicators_user()) {
|
||||
return false;
|
||||
}
|
||||
if (host_keyboard_led_state().num_lock) {
|
||||
rgb_matrix_set_color(4, 0xFF, 0xFF, 0xFF);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@@ -137,10 +137,14 @@ led_config_t g_led_config = { {
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
__attribute__((weak)) void rgb_matrix_indicators_user(void) {
|
||||
bool rgb_matrix_indicators_kb(void) {
|
||||
if (!rgb_matrix_indicators_user()) {
|
||||
return false;
|
||||
}
|
||||
if (host_keyboard_led_state().caps_lock) {
|
||||
rgb_matrix_set_color(48, 0xFF, 0xFF, 0xFF);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@@ -1,30 +1,30 @@
|
||||
#include "woody.h"
|
||||
#ifdef RGB_MATRIX_ENABLE
|
||||
const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT] = {
|
||||
|
||||
const is31_led PROGMEM g_is31_leds[DRIVER_LED_TOTAL] = {
|
||||
|
||||
{0, C8_8, C7_8, C6_8}, // LA17
|
||||
{0, C9_8, C7_7, C6_7}, // LA16
|
||||
{0, C9_7, C8_7, C6_6}, // LA15
|
||||
{0, C9_7, C8_7, C6_6}, // LA15
|
||||
{0, C9_6, C8_6, C7_6}, // LA14
|
||||
{0, C9_5, C8_5, C7_5}, // LA13
|
||||
{0, C9_4, C8_4, C7_4}, // LA12
|
||||
{0, C9_3, C8_3, C7_3}, // LA11
|
||||
{0, C9_2, C8_2, C7_2}, // LA10
|
||||
{0, C9_1, C8_1, C7_1}, // LA9
|
||||
{0, C9_5, C8_5, C7_5}, // LA13
|
||||
{0, C9_4, C8_4, C7_4}, // LA12
|
||||
{0, C9_3, C8_3, C7_3}, // LA11
|
||||
{0, C9_2, C8_2, C7_2}, // LA10
|
||||
{0, C9_1, C8_1, C7_1}, // LA9
|
||||
{0, C2_9, C3_9, C4_9}, // LB0
|
||||
{0, C1_9, C3_10, C4_10}, // LB1
|
||||
{0, C1_10, C2_10, C4_11}, // LB2
|
||||
{0, C1_11, C2_11, C3_11}, // LB3
|
||||
{0, C1_13, C2_13, C3_13}, // LB5
|
||||
{0, C1_14, C2_14, C3_14}, // LB6
|
||||
|
||||
|
||||
{0, C1_7, C2_7, C3_7}, // LA7
|
||||
{0, C1_6, C2_6, C3_6}, // LA6
|
||||
{0, C1_5, C2_5, C3_5}, // LA5
|
||||
{0, C1_4, C2_4, C3_4}, // LA4
|
||||
{0, C1_3, C2_3, C3_3}, // LA3
|
||||
{0, C1_2, C2_2, C4_3}, // LA2
|
||||
{0, C1_1, C3_2, C4_2}, // LA1
|
||||
{0, C1_6, C2_6, C3_6}, // LA6
|
||||
{0, C1_5, C2_5, C3_5}, // LA5
|
||||
{0, C1_4, C2_4, C3_4}, // LA4
|
||||
{0, C1_3, C2_3, C3_3}, // LA3
|
||||
{0, C1_2, C2_2, C4_3}, // LA2
|
||||
{0, C1_1, C3_2, C4_2}, // LA1
|
||||
{0, C2_1, C3_1, C4_1}, // LA0
|
||||
{0, C9_9, C8_9, C7_9}, // LB9
|
||||
{0, C9_10, C8_10, C7_10}, // LB10
|
||||
@@ -36,10 +36,10 @@ const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT] = {
|
||||
|
||||
{0, C1_8, C2_8, C3_8}, // LA8
|
||||
{1, C9_6, C8_6, C7_6}, // LC14
|
||||
{1, C9_5, C8_5, C7_5}, // LC13
|
||||
{1, C9_4, C8_4, C7_4}, // LC12
|
||||
{1, C9_3, C8_3, C7_3}, // LC11
|
||||
{1, C9_2, C8_2, C7_2}, // LC10
|
||||
{1, C9_5, C8_5, C7_5}, // LC13
|
||||
{1, C9_4, C8_4, C7_4}, // LC12
|
||||
{1, C9_3, C8_3, C7_3}, // LC11
|
||||
{1, C9_2, C8_2, C7_2}, // LC10
|
||||
{1, C9_1, C8_1, C7_1}, // LC9
|
||||
{1, C2_9, C3_9, C4_9}, // LD0
|
||||
{1, C1_9, C3_10, C4_10}, // LD1
|
||||
@@ -52,8 +52,8 @@ const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT] = {
|
||||
{1, C9_8, C7_7, C6_7}, // LC16
|
||||
{1, C1_5, C2_5, C3_5}, // LC5
|
||||
{1, C1_4, C2_4, C3_4}, // LC4
|
||||
{1, C1_3, C2_3, C3_3}, // LC3
|
||||
{1, C1_2, C2_2, C4_3}, // LC2
|
||||
{1, C1_3, C2_3, C3_3}, // LC3
|
||||
{1, C1_2, C2_2, C4_3}, // LC2
|
||||
{1, C1_1, C3_2, C4_2}, // LC1
|
||||
{1, C9_9, C8_9, C7_9}, // LD9
|
||||
{1, C9_10, C8_10, C7_10}, // LD10
|
||||
@@ -65,7 +65,7 @@ const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT] = {
|
||||
{0, C9_15, C8_15, C6_14}, // LB15
|
||||
|
||||
{1, C8_8, C7_8, C6_8}, // LC17
|
||||
{1, C1_8, C2_8, C3_8}, // LC8
|
||||
{1, C1_8, C2_8, C3_8}, // LC8
|
||||
{1, C1_7, C2_7, C3_7}, // LC7
|
||||
{1, C2_1, C3_1, C4_1}, // LC0
|
||||
{1, C9_14, C8_14, C7_14}, // LD14
|
||||
@@ -91,29 +91,18 @@ led_config_t g_led_config = { {
|
||||
}, {
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4,
|
||||
4, 4, 4, 4, 4, 4, 1, 1, 1
|
||||
} };
|
||||
#endif
|
||||
|
||||
void suspend_power_down_kb(void)
|
||||
{
|
||||
rgb_matrix_set_suspend_state(true);
|
||||
suspend_power_down_user();
|
||||
}
|
||||
|
||||
void suspend_wakeup_init_kb(void)
|
||||
{
|
||||
rgb_matrix_set_suspend_state(false);
|
||||
suspend_wakeup_init_user();
|
||||
}
|
||||
__attribute__ ((weak))
|
||||
|
||||
void rgb_matrix_indicators_user(void)
|
||||
{
|
||||
if (IS_LED_ON(host_keyboard_leds(), USB_LED_CAPS_LOCK))
|
||||
{
|
||||
bool rgb_matrix_indicators_kb(void) {
|
||||
if (!rgb_matrix_indicators_user()) {
|
||||
return false;
|
||||
}
|
||||
if (IS_LED_ON(host_keyboard_leds(), USB_LED_CAPS_LOCK)) {
|
||||
rgb_matrix_set_color(30, 0xFF, 0x00, 0x00);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user