[Keyboard] Add Plaid-Pad Rev3 and oled keymap (#12464)
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
This commit is contained in:
parent
bfbbb21197
commit
8f4603dd73
16 changed files with 654 additions and 14 deletions
|
@ -22,10 +22,26 @@ LAYOUT_ortho_4x4(
|
|||
|
||||
};
|
||||
|
||||
// Set led state during powerup
|
||||
|
||||
// Set led state during power-up
|
||||
// There is also a LED_GREEN
|
||||
// Only for Rev1 & Rev2
|
||||
#ifdef LED_RED
|
||||
void keyboard_post_init_user(void) {
|
||||
writePinHigh(LED_RED);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
// Rev3 and above only
|
||||
#ifdef OLED_DRIVER_ENABLE
|
||||
void oled_task_user(void) {
|
||||
oled_write_ln_P(PSTR("Plaid-Pad ///////////"), false);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef ENCODER_ENABLE
|
||||
|
||||
void encoder_update_user(uint8_t index, bool clockwise) {
|
||||
/*
|
||||
|
@ -71,3 +87,5 @@ Rev1.1 Rev1
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue