diff options
Diffstat (limited to 'keyboards/lw75')
-rw-r--r-- | keyboards/lw75/config.h | 10 | ||||
-rw-r--r-- | keyboards/lw75/info.json | 5 | ||||
-rw-r--r-- | keyboards/lw75/lw75.c | 15 |
3 files changed, 5 insertions, 25 deletions
diff --git a/keyboards/lw75/config.h b/keyboards/lw75/config.h index 77a51635b4..ce4da1d32e 100644 --- a/keyboards/lw75/config.h +++ b/keyboards/lw75/config.h @@ -3,16 +3,6 @@ #pragma once -/* key matrix pins */ -#define MATRIX_ROW_PINS { E6, B7, D0, D1, D2, B1 } -#define MATRIX_COL_PINS { D3, D5, D4, D6, D7, B4, B5, B6, C6, C7, F7, F6, F5, F4, B0, B2 } - -/* COL2ROW or ROW2COL */ -#define DIODE_DIRECTION COL2ROW - -/* Set 0 if debouncing isn't needed */ -#define DEBOUNCE 5 - /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ #define LOCKING_SUPPORT_ENABLE diff --git a/keyboards/lw75/info.json b/keyboards/lw75/info.json index de5f70ca14..3249465704 100644 --- a/keyboards/lw75/info.json +++ b/keyboards/lw75/info.json @@ -8,6 +8,11 @@ "pid": "0x1111", "device_version": "0.0.1" }, + "matrix_pins": { + "cols": ["D3", "D5", "D4", "D6", "D7", "B4", "B5", "B6", "C6", "C7", "F7", "F6", "F5", "F4", "B0", "B2"], + "rows": ["E6", "B7", "D0", "D1", "D2", "B1"] + }, + "diode_direction": "COL2ROW", "encoder": { "rotary": [ {"pin_a": "F0", "pin_b": "F1"} diff --git a/keyboards/lw75/lw75.c b/keyboards/lw75/lw75.c index 110a26ce1a..1ec6841515 100644 --- a/keyboards/lw75/lw75.c +++ b/keyboards/lw75/lw75.c @@ -2,18 +2,3 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "lw75.h" - -#ifdef ENCODER_ENABLE -bool encoder_update_kb(uint8_t index, bool clockwise) { - if (!encoder_update_user(index, clockwise)) return false; - if (index == 0) { /* First encoder */ - if (clockwise) { - tap_code(KC_VOLU); - } else { - tap_code(KC_VOLD); - } - } - return true; -} -#endif - |