diff options
author | Steven Karrmann <skarrmann@gmail.com> | 2021-10-11 09:53:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 02:53:41 -0700 |
commit | ab7d73104972579b8f7b6f226be0c0df92a5e725 (patch) | |
tree | 7c61b5be2ac8cd658d0667969fba9778199813e8 /keyboards/horizon/config.h | |
parent | f57de35dcf94142c543183ce3d083a2696373ffe (diff) | |
download | qmk_firmware-ab7d73104972579b8f7b6f226be0c0df92a5e725.tar.gz qmk_firmware-ab7d73104972579b8f7b6f226be0c0df92a5e725.zip |
[Keyboard] New Keyboard: Horizon (#14776)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/horizon/config.h')
-rw-r--r-- | keyboards/horizon/config.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/keyboards/horizon/config.h b/keyboards/horizon/config.h new file mode 100644 index 0000000000..8abc3b131b --- /dev/null +++ b/keyboards/horizon/config.h @@ -0,0 +1,46 @@ +/* +Copyright 2021 Steven Karrmann + +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 0xFEED +#define PRODUCT_ID 0x0000 +#define DEVICE_VER 0x0001 +#define MANUFACTURER Steven Karrmann +#define PRODUCT Horizon + +/* key matrix size */ +#define MATRIX_ROWS 4 +#define MATRIX_COLS 14 + +#define MATRIX_ROW_PINS { D3, D2, D1, F4 } +#define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B2, B6, B5, B4, E6, D7, C6, D4, D0 } +#define UNUSED_PINS { } + +#define DIODE_DIRECTION COL2ROW + +/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ +#define LOCKING_SUPPORT_ENABLE +/* Locking resynchronize hack */ +#define LOCKING_RESYNC_ENABLE + +/* disable these deprecated features by default */ +#define NO_ACTION_MACRO +#define NO_ACTION_FUNCTION |