diff options
author | Jonathon Carstens <jon.carstens@gmail.com> | 2020-12-25 06:42:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-26 01:42:11 +1100 |
commit | b7f640ca764b25e09bd0e60841bfd492bede036f (patch) | |
tree | 3eabdac78570d1ae5b3614aeea7e1f9b4bcdc18b /keyboards/lizard_trick/tenkey_plusplus/tenkey_plusplus.h | |
parent | 436b5394bb370ca2415b5c4cc10b92b7665e4e78 (diff) | |
download | qmk_firmware-b7f640ca764b25e09bd0e60841bfd492bede036f.tar.gz qmk_firmware-b7f640ca764b25e09bd0e60841bfd492bede036f.zip |
Adding new keyboard: Tenkey++ (tenkey_plusplus) (#11197)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/lizard_trick/tenkey_plusplus/tenkey_plusplus.h')
-rw-r--r-- | keyboards/lizard_trick/tenkey_plusplus/tenkey_plusplus.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/keyboards/lizard_trick/tenkey_plusplus/tenkey_plusplus.h b/keyboards/lizard_trick/tenkey_plusplus/tenkey_plusplus.h new file mode 100644 index 0000000000..72f3880652 --- /dev/null +++ b/keyboards/lizard_trick/tenkey_plusplus/tenkey_plusplus.h @@ -0,0 +1,45 @@ +/* +Copyright 2020 Jonathon Carstens jonathon@lizardtrick.com + +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 "quantum.h" + +/* This is a shortcut to help you visually see your layout. + * + * The first section contains all of the arguments representing the physical + * layout of the board and position of the keys. + * + * The second converts the arguments into a two-dimensional array which + * represents the switch matrix. + */ + +#define LAYOUT( \ + K00, K01, K03, \ + K10, K11, K12, K13, \ + K20, K21, K22, K23, \ + K30, K31, K32, \ + K40, K41, K42, K43, \ + K51, K52 \ +) { \ + { K00, K01, KC_NO, K03 }, \ + { K10, K11, K12, K13 }, \ + { K20, K21, K22, K23 }, \ + { K30, K31, K32, KC_NO }, \ + { K40, K41, K42, K43 }, \ + { KC_NO, K51, K52, KC_NO } \ +} |