[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:
parent
484c059d86
commit
17d0f6338e
7 changed files with 150 additions and 29 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue