Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add maja capslock indicator #10151

Merged
merged 2 commits into from
Oct 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions keyboards/kbdfans/maja/maja.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,12 @@ void suspend_wakeup_init_kb(void) {
rgb_matrix_set_suspend_state(false);
suspend_wakeup_init_user();
}

__attribute__ ((weak))
void rgb_matrix_indicators_user(void)
drashna marked this conversation as resolved.
Show resolved Hide resolved
{
if (IS_HOST_LED_ON(USB_LED_CAPS_LOCK))
moyi4681 marked this conversation as resolved.
Show resolved Hide resolved
{
rgb_matrix_set_color(30, 0xFF, 0xFF, 0xFF);
}
}