diff options
author | Emily Soldal <emily@soldal.org> | 2018-01-04 19:20:40 +0100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-02-02 01:51:01 -0500 |
commit | a6be48681a92cd47c63cbe763b723c13cc443399 (patch) | |
tree | 8e65a31d9d472feb3b92e83790f06e66cc727429 /keyboards/sweet16/keymaps/default/keymap.c | |
parent | e9944bfc8e89dc772fa04be90638cab1e722ece1 (diff) |
Map num lock and caps lock LED events to the RXLED and TXLED
Diffstat (limited to 'keyboards/sweet16/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/sweet16/keymaps/default/keymap.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/keyboards/sweet16/keymaps/default/keymap.c b/keyboards/sweet16/keymaps/default/keymap.c index c429d24565..7fa8615438 100644 --- a/keyboards/sweet16/keymaps/default/keymap.c +++ b/keyboards/sweet16/keymaps/default/keymap.c @@ -23,4 +23,21 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { break; } return true; -}
\ No newline at end of file +} + +void led_set_user(uint8_t usb_led) { + + /* Map RXLED to USB_LED_NUM_LOCK */ + if (usb_led & (1 << USB_LED_NUM_LOCK)) { + DDRB |= (1 << 0); PORTB &= ~(1 << 0); + } else { + DDRB &= ~(1 << 0); PORTB &= ~(1 << 0); + } + + /* Map TXLED to USB_LED_CAPS_LOCK */ + if (usb_led & (1 << USB_LED_CAPS_LOCK)) { + DDRD |= (1 << 5); PORTD &= ~(1 << 5); + } else { + DDRD &= ~(1 << 5); PORTD &= ~(1 << 5); + } +} |