1
0
Fork 0

[Keyboard] Add Plaid-Pad Rev3 and oled keymap (#12464)

Co-authored-by: Erovia <Erovia@users.noreply.github.com>
This commit is contained in:
Ben 2021-05-14 04:33:36 +02:00 committed by GitHub
parent bfbbb21197
commit 8f4603dd73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 654 additions and 14 deletions

View file

@ -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