diff options
author | Ryan <fauxpark@gmail.com> | 2023-07-03 04:24:22 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 19:24:22 +0100 |
commit | 7ff80a57cbe57e888646c3b90e2f4f9dea977156 (patch) | |
tree | 9917aa79a37e2c51124b63af094da8a96591313c /keyboards/orange75 | |
parent | 9dbad1fa5c068c42f0e948242a2f1922824fbb22 (diff) |
Get rid of `USB_LED_SCROLL_LOCK` (#21405)
Diffstat (limited to 'keyboards/orange75')
-rw-r--r-- | keyboards/orange75/keymaps/default/keymap.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/keyboards/orange75/keymaps/default/keymap.c b/keyboards/orange75/keymaps/default/keymap.c index c79fc918d0..d6b585145d 100644 --- a/keyboards/orange75/keymaps/default/keymap.c +++ b/keyboards/orange75/keymaps/default/keymap.c @@ -52,9 +52,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ) }; -void led_set_user(uint8_t usb_led) { +bool led_update_user(led_t led_state) { - if (usb_led & (1 << USB_LED_NUM_LOCK)) { + if (led_state.num_lock) { setPinOutput(B0); writePinLow(B0); } else { @@ -62,7 +62,7 @@ void led_set_user(uint8_t usb_led) { writePinLow(B0); } - if (usb_led & (1 << USB_LED_CAPS_LOCK)) { + if (led_state.caps_lock) { setPinOutput(B1); writePinLow(B1); } else { @@ -70,11 +70,12 @@ void led_set_user(uint8_t usb_led) { writePinLow(B1); } - if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { + if (led_state.scroll_lock) { setPinOutput(B2); writePinLow(B2); } else { setPinInput(B2); writePinLow(B2); } + return false; } |