-
-
Notifications
You must be signed in to change notification settings - Fork 39.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'capslock backlight' feature to Iron180 (#15462)
* Add 'capslock backlight' capability to Iron180 * Update readme * Revers CAPSLOCK_BACKLIGHT back to default
- Loading branch information
1 parent
067d94f
commit 52b53cc
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
Copyright 2020 Álvaro "Gondolindrim" Volpato <[email protected]> | ||
Copyright 2021 Álvaro "Gondolindrim" Volpato <[email protected]> | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -16,3 +16,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |
*/ | ||
|
||
#include "iron180.h" | ||
|
||
#ifdef CAPSLOCK_BACKLIGHT | ||
bool led_update_kb(led_t led_state) { | ||
bool res = led_update_user(led_state); | ||
if (!led_state.caps_lock){ | ||
if (is_backlight_breathing()) breathing_disable(); | ||
backlight_disable(); | ||
} | ||
else { | ||
if (is_backlight_breathing()) breathing_enable(); | ||
backlight_enable(); | ||
} | ||
return res; | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters