[Keyboard] add encoder support to PlaidPad default mappings (#9396)
* Add flipped and discrete encoder support default mappings * Fixed typo in readme * Removed flipped layout, fix config.h encoder pin mapping, update readme Co-authored-by: matt <matt@smooth.tech>master
parent
d699fd1fb4
commit
e620a7beb2
|
@ -18,8 +18,10 @@
|
||||||
#define MATRIX_COL_PINS { B0, D7, D6, D5 }
|
#define MATRIX_COL_PINS { B0, D7, D6, D5 }
|
||||||
#define UNUSED_PINS { B3, B4, B5, D4}
|
#define UNUSED_PINS { B3, B4, B5, D4}
|
||||||
|
|
||||||
#define ENCODERS_PAD_A { D0, B1 }
|
#define ENCODERS_PAD_A { D1, B2 }
|
||||||
#define ENCODERS_PAD_B { D1, B2 }
|
#define ENCODERS_PAD_B { D0, B1 }
|
||||||
|
|
||||||
|
|
||||||
#define ENCODER_RESOLUTION 4
|
#define ENCODER_RESOLUTION 4
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
/* COL2ROW, ROW2COL*/
|
||||||
|
|
|
@ -30,9 +30,9 @@ void keyboard_post_init_user(void) {
|
||||||
void encoder_update_user(uint8_t index, bool clockwise) {
|
void encoder_update_user(uint8_t index, bool clockwise) {
|
||||||
if (index == 0) { // First encoder - top left
|
if (index == 0) { // First encoder - top left
|
||||||
if (clockwise) {
|
if (clockwise) {
|
||||||
tap_code(KC_UP);
|
tap_code(KC_RIGHT);
|
||||||
} else {
|
} else {
|
||||||
tap_code(KC_DOWN);
|
tap_code(KC_LEFT);
|
||||||
}
|
}
|
||||||
} else if (index == 1) { // Second encoder - top right
|
} else if (index == 1) { // Second encoder - top right
|
||||||
if (clockwise) {
|
if (clockwise) {
|
||||||
|
|
|
@ -3,9 +3,11 @@
|
||||||
|
|
||||||
# Default Plaid-Pad Layout
|
# Default Plaid-Pad Layout
|
||||||
|
|
||||||
This is the default layout that comes flashed on every Plaid-Pad.
|
This is the default layout for the plaid pad.
|
||||||
The upper left (7) and right (/) switch, can be replaced by a rotary encoder.
|
The upper left (7) and right (/) switch, can be replaced by a rotary encoder.
|
||||||
They do "Up Arrow" (KC_UP) and "Down Arrow" (KC_DOWN).
|
Encoders with built-in switch are supported and map to the original keys (7) and (/).
|
||||||
Encoder with build-in switch are supported.
|
|
||||||
|
|
||||||
|
The upper left encoder performs a tap on "Right Arrow" (KC_RIGHT) and "Left Arrow" (KC_LEFT) when rotated clockwise and counter-clockwise in the respective direction for each step of the encoder.
|
||||||
|
|
||||||
|
The upper right encoder performs a tap on "Up Arrow" (KC_UP) and "Down Arrow" (KC_DOWN) when rotated clockwise and counter-clockwise in the respective direction for each step of the encoder.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue