Browse Source

Invert Num Lock LED state (#7945)

pull/7948/head
clovervidia 4 years ago
committed by MechMerlin
parent
commit
61dbb92679
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      keyboards/ymdk_np21/ymdk_np21.c

+ 1
- 1
keyboards/ymdk_np21/ymdk_np21.c View File

@ -30,7 +30,7 @@ void led_init_ports(void) {
bool led_update_kb(led_t led_state) {
if (led_update_user(led_state)) {
writePin(D0, !led_state.num_lock);
writePin(D0, led_state.num_lock);
}
return true;
}

Loading…
Cancel
Save