Browse Source

DZ60: Add Caps Lock LED for default keymap (#2800)

Commit b546da0 added better init handling, but removed Caps Lock LED handling. This re-adds it (in the right place).
pull/2803/head
nariox 6 years ago
committed by Drashna Jaelre
parent
commit
1feb42a108
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      keyboards/dz60/keymaps/default/keymap.c

+ 8
- 0
keyboards/dz60/keymaps/default/keymap.c View File

@ -59,3 +59,11 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
break;
}
}
void led_set_user(uint8_t usb_led) {
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
DDRB |= (1 << 2); PORTB &= ~(1 << 2);
} else {
DDRB &= ~(1 << 2); PORTB &= ~(1 << 2);
}
}

Loading…
Cancel
Save