diff options
Diffstat (limited to 'keyboards/aeboards/ext65/rev1/rev1.h')
-rw-r--r-- | keyboards/aeboards/ext65/rev1/rev1.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/keyboards/aeboards/ext65/rev1/rev1.h b/keyboards/aeboards/ext65/rev1/rev1.h new file mode 100644 index 000000000..a8efc48ac --- /dev/null +++ b/keyboards/aeboards/ext65/rev1/rev1.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* Copyright 2020 Harrison Chan (Xelus) | ||
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 "ext65.h" | ||
20 | #include "quantum.h" | ||
21 | |||
22 | #define ____ KC_NO | ||
23 | |||
24 | #define LAYOUT_ext65( \ | ||
25 | K000, K100, K001, K101, K002, K102, K003, K103, K004, K104, K005, K105, K006, K106, K007, K107, K008, K108, K508, K009, \ | ||
26 | K200, K300, K201, K301, K202, K302, K203, K303, K204, K304, K205, K305, K206, K306, K207, K307, K208, K308, K209, \ | ||
27 | K400, K500, K401, K501, K402, K502, K403, K503, K404, K504, K405, K505, K406, K506, K407, K507, K408, K409, \ | ||
28 | K600, K700, K601, K701, K602, K702, K603, K703, K604, K704, K605, K705, K606, K706, K607, K708, K608, K709, \ | ||
29 | K800, K900, K801, K901, K802, K902, K803, K805, K906, K807, K908, K808, K909 \ | ||
30 | ) { \ | ||
31 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009 }, \ | ||
32 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, ____ }, \ | ||
33 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209 }, \ | ||
34 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, ____ }, \ | ||
35 | { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409 }, \ | ||
36 | { K500, K501, K502, K503, K504, K505, K506, K507, K508, ____ }, \ | ||
37 | { K600, K601, K602, K603, K604, K605, K606, K607, K608, ____ }, \ | ||
38 | { K700, K701, K702, K703, K704, K705, K706, ____, K708, K709 }, \ | ||
39 | { K800, K801, K802, K803, ____, K805, ____, K807, K808, ____ }, \ | ||
40 | { K900, K901, K902, ____, ____, ____, K906, ____, K908, K909 } \ | ||
41 | } | ||