diff options
author | Ryan <fauxpark@gmail.com> | 2023-06-27 09:15:33 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 09:15:33 +1000 |
commit | 5542f5ede1356df387dfb10587f2d74e40fa62a8 (patch) | |
tree | 2f2821aefd33fa68f5253facfa1eb55fff26d874 /keyboards/woodkeys/bigseries/1key/keymaps/8ball | |
parent | fa4ea73bf6668832a363da6817d0792c1e16d37a (diff) |
Get rid of `USB_LED_KANA` and `USB_LED_COMPOSE` (#21366)
Diffstat (limited to 'keyboards/woodkeys/bigseries/1key/keymaps/8ball')
-rwxr-xr-x | keyboards/woodkeys/bigseries/1key/keymaps/8ball/keymap.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/keyboards/woodkeys/bigseries/1key/keymaps/8ball/keymap.c b/keyboards/woodkeys/bigseries/1key/keymaps/8ball/keymap.c index 500fddd53f..b72b1a0d9a 100755 --- a/keyboards/woodkeys/bigseries/1key/keymaps/8ball/keymap.c +++ b/keyboards/woodkeys/bigseries/1key/keymaps/8ball/keymap.c @@ -98,40 +98,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; } -void led_set_user(uint8_t usb_led) { - - if (usb_led & (1 << USB_LED_NUM_LOCK)) { - - } else { - - } - - if (usb_led & (1 << USB_LED_CAPS_LOCK)) { - - } else { - - } - - if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { - - } else { - - } - - if (usb_led & (1 << USB_LED_COMPOSE)) { - - } else { - - } - - if (usb_led & (1 << USB_LED_KANA)) { - - } else { - - } - -} - void reset_rgb(void) { // This gets called on init and after the timeout for the answer color // If you want to change the default color/mode, do it here |