diff options
Diffstat (limited to 'keyboards/keebio/iris/rev6/rev6.h')
-rw-r--r-- | keyboards/keebio/iris/rev6/rev6.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/keyboards/keebio/iris/rev6/rev6.h b/keyboards/keebio/iris/rev6/rev6.h new file mode 100644 index 000000000..d13e24410 --- /dev/null +++ b/keyboards/keebio/iris/rev6/rev6.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | Copyright 2021 Danny Nguyen <danny@keeb.io> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "iris.h" | ||
21 | #include "quantum.h" | ||
22 | |||
23 | |||
24 | #define LAYOUT( \ | ||
25 | LA1, LA2, LA3, LA4, LA5, LA6, RA6, RA5, RA4, RA3, RA2, RA1, \ | ||
26 | LB1, LB2, LB3, LB4, LB5, LB6, RB6, RB5, RB4, RB3, RB2, RB1, \ | ||
27 | LC1, LC2, LC3, LC4, LC5, LC6, RC6, RC5, RC4, RC3, RC2, RC1, \ | ||
28 | LD1, LD2, LD3, LD4, LD5, LD6, LE6, RE6, RD6, RD5, RD4, RD3, RD2, RD1, \ | ||
29 | LE3, LE4, LE5, RE5, RE4, RE3 \ | ||
30 | ) \ | ||
31 | { \ | ||
32 | { LA1, LA2, LA3, LA4, LA5, LA6 }, \ | ||
33 | { LB1, LB2, LB3, LB4, LB5, LB6 }, \ | ||
34 | { LC1, LC2, LC3, LC4, LC5, LC6 }, \ | ||
35 | { LD1, LD2, LD3, LD4, LD5, LD6 }, \ | ||
36 | { KC_NO, KC_NO, LE3, LE4, LE5, LE6 }, \ | ||
37 | { RA1, RA2, RA3, RA4, RA5, RA6 }, \ | ||
38 | { RB1, RB2, RB3, RB4, RB5, RB6 }, \ | ||
39 | { RC1, RC2, RC3, RC4, RC5, RC6 }, \ | ||
40 | { RD1, RD2, RD3, RD4, RD5, RD6 }, \ | ||
41 | { KC_NO, KC_NO, RE3, RE4, RE5, RE6 } \ | ||
42 | } | ||