From bba613d3393ee6be6e55414086ad1a2033247b37 Mon Sep 17 00:00:00 2001 From: Trevor Elliott Date: Sat, 20 Jul 2024 23:52:34 -0700 Subject: [PATCH] Flip the encoder columns for A and B For some reason, the encoders that I bought have the A and B pins reversed. --- keyboards/cheapino/encoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keyboards/cheapino/encoder.c b/keyboards/cheapino/encoder.c index e5920dce49..d793797b8f 100644 --- a/keyboards/cheapino/encoder.c +++ b/keyboards/cheapino/encoder.c @@ -4,8 +4,8 @@ #define COL_SHIFTER ((uint16_t)1) #define ENC_ROW 3 -#define ENC_A_COL 2 -#define ENC_B_COL 4 +#define ENC_A_COL 4 +#define ENC_B_COL 2 #define ENC_BUTTON_COL 0 static bool colABPressed = false;