diff options
Diffstat (limited to 'keyboards/lime')
-rw-r--r-- | keyboards/lime/lime.c | 2 | ||||
-rw-r--r-- | keyboards/lime/lime.h | 21 | ||||
-rw-r--r-- | keyboards/lime/rev1/config.h | 5 | ||||
-rw-r--r-- | keyboards/lime/rev1/info.json | 5 | ||||
-rw-r--r-- | keyboards/lime/rev1/rev1.c | 2 |
5 files changed, 7 insertions, 28 deletions
diff --git a/keyboards/lime/lime.c b/keyboards/lime/lime.c index 3f51811329..2a91587e57 100644 --- a/keyboards/lime/lime.c +++ b/keyboards/lime/lime.c @@ -1,4 +1,4 @@ -#include "lime.h" +#include "quantum.h" #ifdef SWAP_HANDS_ENABLE diff --git a/keyboards/lime/lime.h b/keyboards/lime/lime.h deleted file mode 100644 index 97cee454bc..0000000000 --- a/keyboards/lime/lime.h +++ /dev/null @@ -1,21 +0,0 @@ - /* Copyright 2021 HellSingCoder - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#pragma once - -#ifdef KEYBOARD_lime_rev1 - #include "rev1.h" -#endif diff --git a/keyboards/lime/rev1/config.h b/keyboards/lime/rev1/config.h index 841a7bb764..6ecfdf3034 100644 --- a/keyboards/lime/rev1/config.h +++ b/keyboards/lime/rev1/config.h @@ -16,11 +16,6 @@ #pragma once -// wiring of each half -#define MATRIX_ROW_PINS { D4, C6, D7, E6, B4, B5 } -#define MATRIX_COL_PINS { F6, F7, B1, B3, B2, B6 } -#define DIODE_DIRECTION COL2ROW - #define TAPPING_TERM 100 /* joystick support */ diff --git a/keyboards/lime/rev1/info.json b/keyboards/lime/rev1/info.json index fb05828f6d..8fb3cb2f28 100644 --- a/keyboards/lime/rev1/info.json +++ b/keyboards/lime/rev1/info.json @@ -8,6 +8,11 @@ "pid": "0x2784", "device_version": "0.0.1" }, + "matrix_pins": { + "cols": ["F6", "F7", "B1", "B3", "B2", "B6"], + "rows": ["D4", "C6", "D7", "E6", "B4", "B5"] + }, + "diode_direction": "COL2ROW", "encoder": { "rotary": [ {"pin_a": "F5", "pin_b": "F4", "resolution": 2} diff --git a/keyboards/lime/rev1/rev1.c b/keyboards/lime/rev1/rev1.c index 4cc560623b..50c2e6dff6 100644 --- a/keyboards/lime/rev1/rev1.c +++ b/keyboards/lime/rev1/rev1.c @@ -14,7 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "lime.h" +#include "rev1.h" /* Encoders */ #ifdef ENCODER_ENABLE |