diff options
author | itsnoteasy <pyrosoma1@yahoo.ie> | 2020-06-05 07:55:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 23:55:39 -0700 |
commit | a68b0ed9a25dcbfd616faabab10a123c3c0710fd (patch) | |
tree | 11b3f0ef4def38a83b1d430a96fb2f1d50e6cc98 /keyboards/ortho5by12/ortho5by12.h | |
parent | a2dee4494d27a0a7d6075317a1b41e0ff4db194f (diff) | |
download | qmk_firmware-a68b0ed9a25dcbfd616faabab10a123c3c0710fd.tar.gz |
[Keyboard] Add ortho5by12 keyboard (#9141)
* Add files via upload
* Update keyboards/ortho5by12/rules.mk
* Add files via upload
* Add files via upload
* Update keyboards/ortho5by12/ortho5by12.h
* Update keyboards/ortho5by12/ortho5by12.h
* Add files via upload
* Add files via upload
* Update keyboards/ortho5by12/readme.md
* Update keyboards/ortho5by12/readme.md
* Update keyboards/ortho5by12/readme.md
* Update keyboards/ortho5by12/readme.md
* Update keyboards/ortho5by12/readme.md
* Update keyboards/ortho5by12/readme.md
* Update keyboards/ortho5by12/info.json
* Update keyboards/ortho5by12/ortho5by12.h
* Apply suggestions from code review
* Update rules.mk
* Update config.h
* Update config.h
* Update config.h
* Delete rules.mk
* Delete config.h
* Delete info.json
* Delete ortho5by12.c
* Delete ortho5by12.h
* Delete readme.md
* Delete keymap.c
Diffstat (limited to 'keyboards/ortho5by12/ortho5by12.h')
-rw-r--r-- | keyboards/ortho5by12/ortho5by12.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/keyboards/ortho5by12/ortho5by12.h b/keyboards/ortho5by12/ortho5by12.h new file mode 100644 index 000000000..84f59859d --- /dev/null +++ b/keyboards/ortho5by12/ortho5by12.h @@ -0,0 +1,57 @@ +/* Copyright 2019 Yiancar + * + * 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 +#define XXX KC_NO +#include "quantum.h" + +#define LAYOUT_ortho_5x12( \ + K00, K01, K02, K03, K04, K05, K10, K11, K12, K13, K14, K15, \ + K20, K21, K22, K23, K24, K25, K30, K31, K32, K33, K34, K35, \ + K40, K41, K42, K43, K44, K45, K50, K51, K52, K53, K54, K55, \ + K60, K61, K62, K63, K64, K65, K70, K71, K72, K73, K74, K75, \ + K80, K81, K82, K83, K84, K85, K90, K91, K92, K93, K94, K95 \ +) { \ + { K01, K03, K05, K11, K13, K15 }, \ + { K00, K02, K04, K10, K12, K14 }, \ + { K20, K22, K24, K30, K32, K34 }, \ + { K21, K23, K25, K31, K33, K35 }, \ + { K41, K43, K45, K51, K53, K55 }, \ + { K40, K42, K44, K50, K52, K54 }, \ + { K60, K62, K64, K70, K72, K74 }, \ + { K61, K63, K65, K71, K73, K75 }, \ + { K81, K83, K85, K91, K93, K95 }, \ + { K80, K82, K84, K90, K92, K94 } \ +} + +#define LAYOUT_ortho_5x12_1x2uC( \ + K00, K01, K02, K03, K04, K05, K10, K11, K12, K13, K14, K15, \ + K20, K21, K22, K23, K24, K25, K30, K31, K32, K33, K34, K35, \ + K40, K41, K42, K43, K44, K45, K50, K51, K52, K53, K54, K55, \ + K60, K61, K62, K63, K64, K65, K70, K71, K72, K73, K74, K75, \ + K80, K81, K82, K83, K84, K85, K91, K92, K93, K94, K95 \ +) { \ + { K01, K03, K05, K11, K13, K15 }, \ + { K00, K02, K04, K10, K12, K14 }, \ + { K20, K22, K24, K30, K32, K34 }, \ + { K21, K23, K25, K31, K33, K35 }, \ + { K41, K43, K45, K51, K53, K55 }, \ + { K40, K42, K44, K50, K52, K54 }, \ + { K60, K62, K64, K70, K72, K74 }, \ + { K61, K63, K65, K71, K73, K75 }, \ + { K81, K83, K85, K91, K93, K95 }, \ + { K80, K82, K84, XXX, K92, K94 } \ +} |