Skip to content

Commit

Permalink
[Keyboard] Add LED startup sequence to Lumberjack
Browse files Browse the repository at this point in the history
  • Loading branch information
peej committed Feb 16, 2023
1 parent cd91a3c commit 92e27c0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 9 deletions.
22 changes: 22 additions & 0 deletions keyboards/peej/lumberjack/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,25 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
)

};

void keyboard_pre_init_user() {
writePin(LED1, true);
writePin(LED2, true);
}

void keyboard_post_init_user() {
writePin(LED1, false);
writePin(LED2, false);
}

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
writePin(LED1, record->event.pressed);

return true;
}

layer_state_t layer_state_set_user(layer_state_t state) {
writePin(LED2, state);

return state;
}
13 changes: 4 additions & 9 deletions keyboards/peej/lumberjack/lumberjack.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,9 @@

#include "lumberjack.h"

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
writePin(LED1, record->event.pressed);
void keyboard_pre_init_kb() {
setPinOutput(LED1);
setPinOutput(LED2);

return process_record_user(keycode, record);
}

layer_state_t layer_state_set_kb(layer_state_t state) {
writePin(LED2, state);

return layer_state_set_user(state);
keyboard_pre_init_user();
}

0 comments on commit 92e27c0

Please sign in to comment.