diff options
author | QMK Bot <hello@qmk.fm> | 2021-05-13 17:54:55 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-05-13 17:54:55 +0000 |
commit | c48ce4c2599be0ac785b6294859fb266238a7237 (patch) | |
tree | 447287397344c1d4e47312e672dbb6e8c45f161e /keyboards/gvalchca/spaccboard/config.h | |
parent | 75ffb4b7e26201a5333e3839f37631981c3cd46b (diff) | |
parent | 37ca66f6cf44c33600d7191da7c2725805670eeb (diff) | |
download | qmk_firmware-c48ce4c2599be0ac785b6294859fb266238a7237.tar.gz qmk_firmware-c48ce4c2599be0ac785b6294859fb266238a7237.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/gvalchca/spaccboard/config.h')
-rw-r--r-- | keyboards/gvalchca/spaccboard/config.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/keyboards/gvalchca/spaccboard/config.h b/keyboards/gvalchca/spaccboard/config.h new file mode 100644 index 0000000000..64b13bd9bc --- /dev/null +++ b/keyboards/gvalchca/spaccboard/config.h @@ -0,0 +1,48 @@ +/* +Copyright 2021 Kirill Shkuretskiy + +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 + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0x6776 +#define PRODUCT_ID 0x5342 +#define DEVICE_VER 0x0001 +#define MANUFACTURER Gvalchca +#define PRODUCT SpaccBoard + +/* key matrix size */ +#define MATRIX_ROWS 5 +#define MATRIX_COLS 15 + +// ROWS: Top to bottom, COLS: Left to right + +#define MATRIX_ROW_PINS {B1,B2,B3,C7,F0} +#define MATRIX_COL_PINS {E6,B7,D5,D6,D7,B4,B5,B6,C6,F7,F6,F5,F4,F1,D3} + +/* COL2ROW or ROW2COL */ +#define DIODE_DIRECTION COL2ROW + +/* define if matrix has ghost */ +//#define MATRIX_HAS_GHOST + +/* Set 0 if debouncing isn't needed */ +#define DEBOUNCE 5 + +#define QMK_ESC_OUTPUT E6 // usually COL +#define QMK_ESC_INPUT B1 // usually ROW |