diff options
author | fOmey <pauly.galea@gmail.com> | 2022-03-07 17:55:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 22:55:56 -0800 |
commit | bbd47fcaa258422caeb3ad5dca7cb3cce3b539ed (patch) | |
tree | 7aab7abc0054bf6858e4655d13125dea241d1ba2 /keyboards/atlantis/ak81_ve/config.h | |
parent | 1a1b22ef07e7a60292bfebc8fc1c973b69d88c8c (diff) | |
download | qmk_firmware-bbd47fcaa258422caeb3ad5dca7cb3cce3b539ed.tar.gz qmk_firmware-bbd47fcaa258422caeb3ad5dca7cb3cce3b539ed.zip |
[Keyboard] Atlantis ak81_ve encoder behaviour enhancement & fixes (#16503)
Diffstat (limited to 'keyboards/atlantis/ak81_ve/config.h')
-rw-r--r-- | keyboards/atlantis/ak81_ve/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/atlantis/ak81_ve/config.h b/keyboards/atlantis/ak81_ve/config.h index 44507c47f7..1b6050f9ac 100644 --- a/keyboards/atlantis/ak81_ve/config.h +++ b/keyboards/atlantis/ak81_ve/config.h @@ -35,12 +35,12 @@ #define UNUSED_PINS /* Encoder pins */ -#define ENCODERS_PAD_A { B0 } -#define ENCODERS_PAD_B { E6 } +#define ENCODERS_PAD_A { E6 } +#define ENCODERS_PAD_B { B0 } #define ENCODER_RESOLUTION 4 #define ENCODERS 1 -#define ENCODERS_CCW_KEY { { 3, 5 } } // Note: array is { col, row ) -#define ENCODERS_CW_KEY { { 4, 5 } } // Note: array is { col, row ) +#define ENCODERS_CCW_KEY { { 4, 5 } } // Note: array is { col, row ) +#define ENCODERS_CW_KEY { { 3, 5 } } // Note: array is { col, row ) /* LED pins */ #define LED_CAPS_LOCK_PIN D4 |