diff options
author | Emīls Delle <emiilsdelle@gmail.com> | 2019-01-21 06:15:46 +0200 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-01-20 20:15:46 -0800 |
commit | 58993d3cde0d52addb4a503daf1ded36b26b8abc (patch) | |
tree | bba89638b7245ff70d300c82497e60ef202abd1e /keyboards/tmo50/tmo50.h | |
parent | b0d308eea1a66f9daaee523882c6d050cd88f1c5 (diff) |
[Keyboard] Tmo50 initial commit (#4891)
* Create ISO HHKB keymapping for GH60
* Add media controls to Fn layer
* Use M(x) instead of F(x), add Copyright text
* Create initial firmware for TMO50
* Correct year and author
* Fix repos README
* Remove unnecessary code
* Change include guard in tmo50.h
Diffstat (limited to 'keyboards/tmo50/tmo50.h')
-rw-r--r-- | keyboards/tmo50/tmo50.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/keyboards/tmo50/tmo50.h b/keyboards/tmo50/tmo50.h new file mode 100644 index 0000000000..5723b00aea --- /dev/null +++ b/keyboards/tmo50/tmo50.h @@ -0,0 +1,40 @@ +/* Copyright 2019 funderburker + * + * 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 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( \ + K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, \ + K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, \ + K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, \ + K300, K301, K302, K303, K305, K307, K309, K310 \ +) \ +{ \ + { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013 }, \ + { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113 }, \ + { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213 }, \ + { K300, K301, K302, K303, KC_NO, K305, KC_NO, K307, KC_NO, K309, K310, KC_NO, KC_NO, KC_NO } \ +} + |