]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/40percentclub/25/25.h
Keyboard: Initial 25 port (#4394)
[qmk_firmware.git] / keyboards / 40percentclub / 25 / 25.h
1 /* Copyright 2018
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 #pragma once
17
18 #include "quantum.h"
19 #define ___ KC_NO
20
21 #ifndef FLIP_HALF
22 #define LAYOUT_ortho_5x10( \
23         L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \
24         L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \
25         L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \
26         L30, L31, L32, L33, L34, R30, R31, R32, R33, R34, \
27         L40, L41, L42, L43, L44, R40, R41, R42, R43, R44  \
28 ) { \
29         { L00, L01, L02, L03, L04 }, \
30         { L10, L11, L12, L13, L14 }, \
31         { L20, L21, L22, L23, L24 }, \
32         { L30, L31, L32, L33, L34 }, \
33         { L40, L41, L42, L43, L44 }, \
34         { R04, R03, R02, R01, R00 }, \
35         { R14, R13, R12, R11, R10 }, \
36         { R24, R23, R22, R21, R20 }, \
37         { R34, R33, R32, R31, R30 }, \
38         { R44, R43, R42, R41, R40 }  \
39 }
40 #else
41 #define LAYOUT_ortho_5x10( \
42         L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \
43         L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \
44         L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \
45         L30, L31, L32, L33, L34, R30, R31, R32, R33, R34, \
46         L40, L41, L42, L43, L44, R40, R41, R42, R43, R44  \
47 ) { \
48         { L00, L01, L02, L03, L04 }, \
49         { L10, L11, L12, L13, L14 }, \
50         { L20, L21, L22, L23, L24 }, \
51         { L30, L31, L32, L33, L34 }, \
52         { L40, L41, L42, L43, L44 }, \
53         { R00, R01, R02, R03, R04 }, \
54         { R10, R11, R12, R13, R14 }, \
55         { R20, R21, R22, R23, R24 }, \
56         { R30, R31, R32, R33, R34 }, \
57         { R40, R41, R42, R43, R44 }  \
58 }
59 #endif
60
61 #define LAYOUT_ortho_5x5( \
62         L00, L01, L02, L03, L04, \
63         L10, L11, L12, L13, L14, \
64         L20, L21, L22, L23, L24, \
65         L30, L31, L32, L33, L34, \
66         L40, L41, L42, L43, L44  \
67 ) { \
68         { L00, L01, L02, L03, L04 }, \
69         { L10, L11, L12, L13, L14 }, \
70         { L20, L21, L22, L23, L24 }, \
71         { L30, L31, L32, L33, L34 }, \
72         { L40, L41, L42, L43, L44 }, \
73         { ___, ___, ___, ___, ___ }, \
74   { ___, ___, ___, ___, ___ }, \
75   { ___, ___, ___, ___, ___ }, \
76   { ___, ___, ___, ___, ___ }, \
77   { ___, ___, ___, ___, ___ }  \
78 }
79
80 #define LAYOUT_macro LAYOUT_ortho_5x5
81 #define LAYOUT_split LAYOUT_ortho_5x10
82
83 #ifdef USE_I2C
84   #error "I2C not Supported"
85 #endif