diff options
| author | Brandon Claveria <48102030+swiftrax@users.noreply.github.com> | 2022-02-08 21:51:51 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-08 21:51:51 -0800 |
| commit | c49438feec9fb6be368d6377ca05d0c86d310d4f (patch) | |
| tree | 9880b6f798a0d7f0150e82f4401c3c962ec81462 /keyboards/handwired/swiftrax/digicarp65/config.h | |
| parent | c212b65e48bc203a05cd627ba0830b9be0b3d90a (diff) | |
| download | qmk_firmware-c49438feec9fb6be368d6377ca05d0c86d310d4f.tar.gz qmk_firmware-c49438feec9fb6be368d6377ca05d0c86d310d4f.zip | |
[Keyboard] Digicarp65 (#15926)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: swiftrax <swiftrax@github.com>
Diffstat (limited to 'keyboards/handwired/swiftrax/digicarp65/config.h')
| -rw-r--r-- | keyboards/handwired/swiftrax/digicarp65/config.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/keyboards/handwired/swiftrax/digicarp65/config.h b/keyboards/handwired/swiftrax/digicarp65/config.h new file mode 100644 index 000000000..1f11e310d --- /dev/null +++ b/keyboards/handwired/swiftrax/digicarp65/config.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2022 Swiftrax <swiftrax@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | /* USB Device descriptor parameter */ | ||
| 23 | #define VENDOR_ID 0x04D8 | ||
| 24 | #define PRODUCT_ID 0xE7F1 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Swiftrax | ||
| 27 | #define PRODUCT DigiCarp65 | ||
| 28 | /* key matrix size */ | ||
| 29 | #define MATRIX_ROWS 5 | ||
| 30 | #define MATRIX_COLS 16 | ||
| 31 | |||
| 32 | // ROWS: Top to bottom, COLS: Left to right | ||
| 33 | |||
| 34 | #define MATRIX_ROW_PINS { B2, B1, F4, F1, F0 } | ||
| 35 | #define MATRIX_COL_PINS { F5, C6, F6, F7, C7, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1, D0 } | ||
| 36 | |||
| 37 | /* COL2ROW or ROW2COL */ | ||
| 38 | #define DIODE_DIRECTION COL2ROW | ||
| 39 | |||
| 40 | /* define if matrix has ghost */ | ||
| 41 | //#define MATRIX_HAS_GHOST | ||
| 42 | |||
| 43 | /* Set 0 if debouncing isn't needed */ | ||
| 44 | #define DEBOUNCE 5 | ||
| 45 | |||
| 46 | #define ENCODERS_PAD_A { B3 } | ||
| 47 | #define ENCODERS_PAD_B { B7 } | ||
