Skip to content

Commit

Permalink
Fix projectkb/alice LED indicator (qmk#9226)
Browse files Browse the repository at this point in the history
Keyboard pre initialization code for LED pins.
  • Loading branch information
projectkeyboard authored and sjmacneil committed Jan 27, 2021
1 parent b9648f4 commit f3d8b12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion keyboards/projectkb/alice/alice.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#include "alice.h"

void matrix_init_board(void){
void keyboard_pre_init_kb(void) {
setPinOutput(INDICATOR_PIN_0);
setPinOutput(INDICATOR_PIN_1);
setPinOutput(INDICATOR_PIN_2);

keyboard_pre_init_user();
}

bool led_update_kb(led_t led_state) {
Expand Down

0 comments on commit f3d8b12

Please sign in to comment.