diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2020-04-16 12:28:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 12:28:49 -0700 |
commit | 4a92dd327c7df11f10cbe85c5eb5868330062f2b (patch) | |
tree | f71819c285fdd8c0cba2ee6298679a58ccf66d2e /keyboards/botanicalkeyboards/fm2u/config.h | |
parent | 7873b49d40cef838268575d5b31a1d377b218787 (diff) |
[Keyboard] Botanical Keyboards FM2U (#8819)
* initial commit for fm2u keyboard
* add fm2u keyboard along with VIA keymap
* add meme LAYOUT support
* minor cleanups
* fixup layout macro names
Diffstat (limited to 'keyboards/botanicalkeyboards/fm2u/config.h')
-rw-r--r-- | keyboards/botanicalkeyboards/fm2u/config.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/keyboards/botanicalkeyboards/fm2u/config.h b/keyboards/botanicalkeyboards/fm2u/config.h new file mode 100644 index 0000000000..944b7b3b2a --- /dev/null +++ b/keyboards/botanicalkeyboards/fm2u/config.h @@ -0,0 +1,55 @@ +/* +Copyright 2020 mechmerlin + +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 0x6969 +#define PRODUCT_ID 0x0001 +#define DEVICE_VER 0x0001 +#define MANUFACTURER botanicalkeyboards +#define PRODUCT fm2u +#define DESCRIPTION A 1 key macropad + +/* key matrix size */ +#define MATRIX_ROWS 1 +#define MATRIX_COLS 1 + +/* Keyboard Matrix Assignments */ +#define DIRECT_PINS { \ + { C4 } \ +} + +/* + * Keyboard Matrix Assignments + * + * Change this to how you wired your keyboard + * COLS: AVR pins used for columns, left to right + * ROWS: AVR pins used for rows, top to bottom + * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) + * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) + * + */ +#define UNUSED_PINS + +/* COL2ROW, ROW2COL*/ +#define DIODE_DIRECTION COL2ROW + + + |