1
0
Fork 0

[Keyboard] ProjectKB Alice rev2 (#8718)

* Add revision 1 and revision 2 to ProjectKB Alice PCB

* Swap SLEEP LED to no

* Basic root rules.mk

* Apply suggestions from code review

* Update keyboards/projectkb/alice/rules.mk
This commit is contained in:
Andrew Kannan 2020-04-15 18:37:47 -04:00 committed by GitHub
parent 484c059d86
commit 17d0f6338e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 150 additions and 29 deletions

View file

@ -1,17 +1,17 @@
#include "alice.h"
void matrix_init_board(void){
setPinOutput(A0);
setPinOutput(A1);
setPinOutput(A2);
setPinOutput(INDICATOR_PIN_0);
setPinOutput(INDICATOR_PIN_1);
setPinOutput(INDICATOR_PIN_2);
}
bool led_update_kb(led_t led_state) {
bool runDefault = led_update_user(led_state);
if (runDefault) {
writePin(A0, !led_state.num_lock);
writePin(A1, !led_state.caps_lock);
writePin(A2, !led_state.scroll_lock);
writePin(INDICATOR_PIN_0, !led_state.num_lock);
writePin(INDICATOR_PIN_1, !led_state.caps_lock);
writePin(INDICATOR_PIN_2, !led_state.scroll_lock);
}
return runDefault;
}