Browse Source

Fixing DecadePad Numlock LED Bug (#8831)

* Fixing Numlock LED Bugs

* Change LED CODE to new API
pull/8559/head
huajijam 4 years ago
committed by GitHub
parent
commit
7e4cf9ace2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      keyboards/reversestudio/decadepad/decadepad.c

+ 10
- 1
keyboards/reversestudio/decadepad/decadepad.c View File

@ -1,7 +1,16 @@
#include "decadepad.h"
void matrix_init_kb(void) {
led_init_ports();
matrix_init_user();
};
void led_init_ports(void) {
setPinOutput(D4);
}
bool led_update_kb(led_t led_state) {
if (led_update_user(led_state)){
writePin(D4, led_state.num_lock);
writePin(D4, !led_state.num_lock);
}
return true;
}

Loading…
Cancel
Save