diff options
Diffstat (limited to 'keyboards/splitkb/kyria/keymaps/zigotica/keymap.c')
-rw-r--r-- | keyboards/splitkb/kyria/keymaps/zigotica/keymap.c | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/keyboards/splitkb/kyria/keymaps/zigotica/keymap.c b/keyboards/splitkb/kyria/keymaps/zigotica/keymap.c new file mode 100644 index 000000000..2671f0746 --- /dev/null +++ b/keyboards/splitkb/kyria/keymaps/zigotica/keymap.c | |||
@@ -0,0 +1,58 @@ | |||
1 | /* Copyright 2020 Sergi Meseguer <zigotica@gmail.com> | ||
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 | #include "zigotica.h" | ||
18 | |||
19 | #define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__) | ||
20 | |||
21 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
22 | |||
23 | [BASE] = LAYOUT_wrapper( | ||
24 | _______, _STENAI_L1, _STENAI_R1, _______, | ||
25 | _______, _STENAI_L2, _STENAI_R2, _______, | ||
26 | _______, _STENAI_L3, _______, _______, _______, _______, _STENAI_R3, _______, | ||
27 | _______, _______, _STENAI_LT, _______, _______, _STENAI_RT, _______, _______ | ||
28 | ), | ||
29 | |||
30 | [_NUM] = LAYOUT_wrapper( | ||
31 | _______, ____NUM_L1, ____NUM_R1, _______, | ||
32 | _______, ____NUM_L2, ____NUM_R2, _______, | ||
33 | _______, ____NUM_L3, _______, _______, _______, _______, ____NUM_R3, _______, | ||
34 | _______, _______, ____NUM_LT, _______, _______, ____NUM_RT, _______, _______ | ||
35 | ), | ||
36 | |||
37 | [_NAV] = LAYOUT_wrapper( | ||
38 | _______, ____NAV_L1, ____NAV_R1, _______, | ||
39 | _______, ____NAV_L2, ____NAV_R2, _______, | ||
40 | _______, ____NAV_L3, _______, _______, _______, _______, ____NAV_R3, _______, | ||
41 | _______, _______, ____NAV_LT, _______, _______, ____NAV_RT, _______, _______ | ||
42 | ), | ||
43 | |||
44 | [_SYM] = LAYOUT_wrapper( | ||
45 | _______, ____SYM_L1, ____SYM_R1, _______, | ||
46 | _______, ____SYM_L2, ____SYM_R2, _______, | ||
47 | _______, ____SYM_L3, _______, _______, _______, _______, ____SYM_R3, _______, | ||
48 | _______, _______, ____SYM_LT, _______, _______, ____SYM_RT, _______, _______ | ||
49 | ), | ||
50 | |||
51 | [_FN] = LAYOUT_wrapper( | ||
52 | _______, ____FN_L1, ____FN_R1, _______, | ||
53 | _______, ____FN_L2, ____FN_R2, _______, | ||
54 | _______, ____FN_L3, _______, _______, _______, _______, ____FN_R3, _______, | ||
55 | _______, _______, ____FN_LT, _______, _______, ____FN_RT, _______, _______ | ||
56 | ), | ||
57 | }; | ||
58 | |||