diff options
Diffstat (limited to 'keyboards/clawsome/hatchback/hatchback.h')
| -rw-r--r-- | keyboards/clawsome/hatchback/hatchback.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/keyboards/clawsome/hatchback/hatchback.h b/keyboards/clawsome/hatchback/hatchback.h new file mode 100644 index 000000000..b55f6adc2 --- /dev/null +++ b/keyboards/clawsome/hatchback/hatchback.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | /* Copyright 2021 AAClawson (AlisGraveNil) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | #include "quantum.h" | ||
| 20 | |||
| 21 | // clang-format off | ||
| 22 | #define LAYOUT( \ | ||
| 23 | K00, K01, K11, K02, K12, K03, K13, K04, K14, K05, K15, K06, K16, K07, K18, K09, \ | ||
| 24 | K20, K30, K21, K31, K22, K32, K23, K33, K24, K34, K25, K35, K26, K36, K27, K38, K29, \ | ||
| 25 | K40, K50, K41, K51, K42, K52, K43, K53, K44, K54, K45, K55, K46, K56, K47, K58, K49, \ | ||
| 26 | K60, K70, K61, K71, K62, K72, K63, K73, K64, K74, K65, K75, K76, \ | ||
| 27 | K80, K90, K81, K91, K82, K92, K83, K93, K84, K94, K85, K96, K98, \ | ||
| 28 | KA0, KB0, KA1, KA2, KA3, KA4, KA5, KB5, KA6, KB6, KA7, KB8, KA9 \ | ||
| 29 | ) { \ | ||
| 30 | { K00, K01, K02, K03, K04, K05, K06, K07, KC_NO, K09 }, \ | ||
| 31 | { KC_NO, K11, K12, K13, K14, K15, K16, KC_NO, K18, KC_NO }, \ | ||
| 32 | { K20, K21, K22, K23, K24, K25, K26, K27, KC_NO, K29 }, \ | ||
| 33 | { K30, K31, K32, K33, K34, K35, K36, KC_NO, K38, KC_NO }, \ | ||
| 34 | { K40, K41, K42, K43, K44, K45, K46, K47, KC_NO, K49 }, \ | ||
| 35 | { K50, K51, K52, K53, K54, K55, K56, KC_NO, K58, KC_NO }, \ | ||
| 36 | { K60, K61, K62, K63, K64, K65, KC_NO, KC_NO, KC_NO, KC_NO }, \ | ||
| 37 | { K70, K71, K72, K73, K74, K75, K76, KC_NO, KC_NO, KC_NO }, \ | ||
| 38 | { K80, K81, K82, K83, K84, K85, KC_NO, KC_NO, KC_NO, KC_NO }, \ | ||
| 39 | { K90, K91, K92, K93, K94, KC_NO, K96, KC_NO, K98, KC_NO }, \ | ||
| 40 | { KA0, KA1, KA2, KA3, KA4, KA5, KA6, KA7, KC_NO, KA9 }, \ | ||
| 41 | { KB0, KC_NO, KC_NO, KC_NO, KC_NO, KB5, KB6, KC_NO, KB8, KC_NO }, \ | ||
| 42 | } | ||
| 43 | // clang-format on | ||
