aboutsummaryrefslogtreecommitdiff
path: root/users/konstantin/konstantin.c
diff options
context:
space:
mode:
Diffstat (limited to 'users/konstantin/konstantin.c')
-rw-r--r--users/konstantin/konstantin.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/users/konstantin/konstantin.c b/users/konstantin/konstantin.c
index 9cee25ac6..72aca9fb8 100644
--- a/users/konstantin/konstantin.c
+++ b/users/konstantin/konstantin.c
@@ -69,7 +69,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
69 case CLEAR: 69 case CLEAR:
70 if (record->event.pressed) { 70 if (record->event.pressed) {
71 CLEAN_MODS( 71 CLEAN_MODS(
72 SEND_STRING(SS_LCTRL("a") SS_TAP(X_DELETE)); 72 SEND_STRING(SS_LCTL("a") SS_TAP(X_DELETE));
73 ) 73 )
74 } 74 }
75 break; 75 break;
@@ -117,3 +117,12 @@ void led_set_keymap(uint8_t usb_led) {}
117void led_set_user(uint8_t usb_led) { 117void led_set_user(uint8_t usb_led) {
118 led_set_keymap(usb_led); 118 led_set_keymap(usb_led);
119} 119}
120
121__attribute__((weak))
122bool led_update_keymap(led_t led_state) {
123 return true;
124}
125
126bool led_update_user(led_t led_state) {
127 return led_update_keymap(led_state);
128}