diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /keyboards/3w6/keymaps |
Diffstat (limited to 'keyboards/3w6/keymaps')
-rw-r--r-- | keyboards/3w6/keymaps/default/keymap.c | 69 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/helltm/combos.def | 18 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/helltm/combos.h | 35 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/helltm/config.h | 20 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/helltm/keymap.c | 168 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/helltm/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/manna-harbour_miryoku/config.h | 32 | ||||
-rw-r--r-- | keyboards/3w6/keymaps/manna-harbour_miryoku/keymap.c | 17 |
8 files changed, 361 insertions, 0 deletions
diff --git a/keyboards/3w6/keymaps/default/keymap.c b/keyboards/3w6/keymaps/default/keymap.c new file mode 100644 index 000000000..029173b67 --- /dev/null +++ b/keyboards/3w6/keymaps/default/keymap.c | |||
@@ -0,0 +1,69 @@ | |||
1 | /* Copyright 2021 weteor | ||
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 QMK_KEYBOARD_H | ||
18 | |||
19 | enum layers | ||
20 | { | ||
21 | _ALPHA_QWERTY = 0, | ||
22 | _ALPHA_COLEMAK, | ||
23 | _SYM, | ||
24 | _NAV, | ||
25 | _NUM, | ||
26 | _CFG, | ||
27 | }; | ||
28 | |||
29 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
30 | |||
31 | |||
32 | [_ALPHA_QWERTY] = LAYOUT( | ||
33 | KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, | ||
34 | KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, | ||
35 | LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, RSFT_T(KC_SLSH), | ||
36 | |||
37 | LCTL_T(KC_ESC), LT(_NUM,KC_SPC), LT(_NAV, KC_TAB), LT(_SYM, KC_BSPC), KC_ENT, LALT_T(KC_DEL) | ||
38 | ), | ||
39 | [_ALPHA_COLEMAK] = LAYOUT( | ||
40 | KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_QUOT, | ||
41 | KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, | ||
42 | LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, RSFT_T(KC_SCLN), | ||
43 | LCTL_T(KC_ENT), LT(_NUM,KC_SPC), LT(_NAV, KC_TAB), LT(_SYM, KC_BSPC), KC_ENT, LALT_T(KC_DEL) | ||
44 | ), | ||
45 | [_SYM] = LAYOUT( | ||
46 | KC_GRV , KC_CIRC, KC_AT, KC_DLR, KC_TILD, KC_AMPR, KC_EXLM, KC_PIPE, KC_UNDS, KC_HASH, | ||
47 | KC_SLSH, KC_LBRC, KC_LCBR, KC_LPRN, KC_EQL, KC_ASTR, KC_RPRN, KC_RCBR, KC_RBRC, KC_BSLS, | ||
48 | _______, KC_QUES, KC_PLUS, KC_PERC, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, XXXXXXX, _______, | ||
49 | XXXXXXX, MO(_CFG), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX | ||
50 | ), | ||
51 | [_NAV] = LAYOUT( | ||
52 | XXXXXXX, KC_VOLD, KC_MUTE, KC_VOLU, XXXXXXX, XXXXXXX, KC_PGDN, KC_UP, KC_PGUP, KC_DEL, | ||
53 | KC_MPRV, KC_MPLY, KC_MSTP, KC_MNXT, XXXXXXX, KC_HOME, KC_LEFT, KC_DOWN, KC_RGHT, KC_END, | ||
54 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
55 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, MO(_CFG), XXXXXXX | ||
56 | ), | ||
57 | [_NUM] = LAYOUT( | ||
58 | XXXXXXX, KC_F9, KC_F10, KC_F11, KC_F12, KC_PPLS, KC_P7, KC_P8, KC_P9, KC_PSLS, | ||
59 | XXXXXXX, KC_F5, KC_F6, KC_F7, KC_F8, KC_P0, KC_P4, KC_P5, KC_P6, KC_PDOT, | ||
60 | XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F4, KC_PMNS, KC_P1, KC_P2, KC_P3, KC_PAST, | ||
61 | XXXXXXX, XXXXXXX, XXXXXXX, KC_PEQL, KC_PENT, XXXXXXX | ||
62 | ), | ||
63 | [_CFG] = LAYOUT( | ||
64 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,DF(_ALPHA_QWERTY), DF(_ALPHA_COLEMAK), | ||
65 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
66 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
67 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX | ||
68 | ), | ||
69 | }; | ||
diff --git a/keyboards/3w6/keymaps/helltm/combos.def b/keyboards/3w6/keymaps/helltm/combos.def new file mode 100644 index 000000000..49b95e5eb --- /dev/null +++ b/keyboards/3w6/keymaps/helltm/combos.def | |||
@@ -0,0 +1,18 @@ | |||
1 | CB(open_round_brackets_combo, KC_LPRN, KC_R, KC_T) | ||
2 | CB(open_square_brackets_combo, KC_LBRC, KC_F, KC_G) | ||
3 | CB(open_curly_brackets_combo, KC_LCBR, KC_V, KC_B) | ||
4 | CB(close_round_brackets_combo, KC_RPRN, KC_Y, KC_U) | ||
5 | CB(close_square_brackets_combo, KC_RBRC, KC_H, KC_J) | ||
6 | CB(close_curly_brackets_combo, KC_RCBR, KC_N, KC_M) | ||
7 | |||
8 | CB(esc_combo, KC_ESC, KC_Q, KC_A) | ||
9 | CB(tab_combo, KC_TAB, KC_A, LSFT_T(KC_Z)) | ||
10 | |||
11 | CB(single_quote_combo, KC_QUOT, KC_P, KC_SCLN) | ||
12 | CB(double_quote_combo, KC_DQUO, KC_SCLN, RSFT_T(KC_SLSH)) | ||
13 | |||
14 | CB(plus_combo, KC_PLUS, KC_T, KC_G) | ||
15 | CB(asterisk_combo, KC_ASTR, KC_G, KC_B) | ||
16 | |||
17 | CB(minus_combo, KC_MINS, KC_Y, KC_H) | ||
18 | CB(equal_combo, KC_EQL, KC_H, KC_N) | ||
diff --git a/keyboards/3w6/keymaps/helltm/combos.h b/keyboards/3w6/keymaps/helltm/combos.h new file mode 100644 index 000000000..85f44cd0d --- /dev/null +++ b/keyboards/3w6/keymaps/helltm/combos.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* Copyright 2021 HellSingCoder | ||
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 | #define CB(name, action, ...) C_##name, | ||
20 | enum user_combos { | ||
21 | #include "combos.def" | ||
22 | COMBO_LENGTH | ||
23 | }; | ||
24 | #undef CB | ||
25 | uint16_t COMBO_LEN = COMBO_LENGTH; | ||
26 | |||
27 | #define CB(name, action, ...) const uint16_t PROGMEM name##_combo[] = {__VA_ARGS__, COMBO_END}; | ||
28 | #include "combos.def" | ||
29 | #undef CB | ||
30 | |||
31 | combo_t key_combos[COMBO_LENGTH] = { | ||
32 | #define CB(name, action, ...) COMBO(name##_combo, action), | ||
33 | #include "combos.def" | ||
34 | #undef CB | ||
35 | }; | ||
diff --git a/keyboards/3w6/keymaps/helltm/config.h b/keyboards/3w6/keymaps/helltm/config.h new file mode 100644 index 000000000..9ccb616a0 --- /dev/null +++ b/keyboards/3w6/keymaps/helltm/config.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* Copyright 2021 HellSingCoder | ||
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 | /* Combo timer */ | ||
20 | #define COMBO_TERM 15 | ||
diff --git a/keyboards/3w6/keymaps/helltm/keymap.c b/keyboards/3w6/keymaps/helltm/keymap.c new file mode 100644 index 000000000..83ac6f02d --- /dev/null +++ b/keyboards/3w6/keymaps/helltm/keymap.c | |||
@@ -0,0 +1,168 @@ | |||
1 | /* Copyright 2021 HellSingCoder | ||
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 QMK_KEYBOARD_H | ||
18 | |||
19 | #ifdef COMBO_ENABLE | ||
20 | # include "combos.h" | ||
21 | #endif | ||
22 | |||
23 | enum layers | ||
24 | { | ||
25 | _ALPHA_QWERTY = 0, | ||
26 | _SYM, | ||
27 | _NAV, | ||
28 | _NUM, | ||
29 | }; | ||
30 | |||
31 | enum custom_keycodes { | ||
32 | KC_THUMB_SWAP, | ||
33 | }; | ||
34 | |||
35 | /* Space Enter swap */ | ||
36 | bool swap_space_enter = false; | ||
37 | |||
38 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
39 | |||
40 | /* | ||
41 | * QWERTY | ||
42 | * | ||
43 | * _____________________ _____________________ | ||
44 | * __|__ | | __|__ | ||
45 | * _____ | | v v | | _____ | ||
46 | * .-----| E |-----._____ _____.-----| I |-----. | ||
47 | * .-----| W |_____| R | T | __ ( ) __ | Y | U |_____| O |-----. | ||
48 | * __ | Q |-----| D |-----|_____| __|--> + - <--|__ |_____|-----| K |-----| P | __ | ||
49 | * ESC <--|__ |-----| S |_____| F | G | [ ] | H | J |_____| L |-----| __|--> ' | ||
50 | * __ | A |-----| C |-----|_____| __ __ |_____|-----| , < |-----| ; : | __ | ||
51 | * TAB <--|__ |-----| X |_____| V | B | __|--> * { } = <--|__ | N | M |_____| . > |-----| __|--> " | ||
52 | * | Z |-----' '-----|_____| |_____|-----' '-----| / ? | | ||
53 | * '-----' .-----. _____ .-.._ _..-. _____ .-----. '-----' | ||
54 | * | | WIN ||CTRL | / / \ \ | BSp || Del | | | ||
55 | * SHIFT '-----':_____|/ ENT / \ SPC \|_____:'-----' SHIFT | ||
56 | * | '--.._/ \_..--' | | | ||
57 | * NUM NAV SYM | ||
58 | */ | ||
59 | [_ALPHA_QWERTY] = LAYOUT( | ||
60 | KC_Q, KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , | ||
61 | KC_A, KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_SCLN , | ||
62 | LSFT_T(KC_Z), KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM, KC_DOT , RSFT_T(KC_SLSH), | ||
63 | LT(_NUM, KC_LGUI), KC_LCTRL, KC_ENT, KC_SPC, LT(_NAV, KC_BSPC), LT(_SYM, KC_DEL) | ||
64 | ), | ||
65 | |||
66 | /* | ||
67 | * Symbols | ||
68 | * _____ _____ | ||
69 | * .-----| # |-----._____ _____.-----| * |-----. | ||
70 | * .-----| @ |_____| $ | % | | ^ | & |_____| ( |-----. | ||
71 | * | ! |-----| |-----|_____| |_____|-----| [ { |-----| ) | | ||
72 | * |-----| |_____| | | | { | } |_____| ] } |-----| | ||
73 | * | ` ~ |-----| |-----|_____| |_____|-----| |-----| ' " | | ||
74 | * |-----| |_____| | | | - _ | = + |_____| | |-----| | ||
75 | * | ~ |-----' '-----|_____| |_____|-----' '-----| \ | | | ||
76 | * '-----' .-----. _____ .-.._ _..-. _____ .-----. '-----' | ||
77 | * SHIFT | ||CTRL | / / \ \ | BSp || | SHIFT | ||
78 | * '-----':_____|/ ENT / \ SPC \|_____:'-----' | ||
79 | * '--.._/ \_..--' | ||
80 | */ | ||
81 | [_SYM] = LAYOUT( | ||
82 | KC_EXLM, KC_AT , KC_HASH, KC_DLR , KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN , | ||
83 | KC_GRV , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LCBR, KC_RCBR, KC_LBRC, KC_RBRC, KC_QUOT , | ||
84 | LSFT_T(KC_TILD), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL , XXXXXXX, KC_PIPE, RSFT_T(KC_BSLS), | ||
85 | XXXXXXX, _______, _______, _______, KC_BSPC, XXXXXXX | ||
86 | ), | ||
87 | |||
88 | /* | ||
89 | * Navigation | ||
90 | * _____ _____ | ||
91 | * .-----|Mute |-----._____ _____.-----| Up |-----. | ||
92 | * .-----|VDown|_____| VUp | | | |PDown|_____| PUp |-----. | ||
93 | * | Esc |-----|Play |-----|_____| |_____|-----|Down |-----| BSp | | ||
94 | * |-----|Prev |_____|Next | | |Home |Left |_____|Right|-----| | ||
95 | * | Tab |-----|Stop |-----|_____| |_____|-----| |-----| ' " | | ||
96 | * |-----| |_____| | | | | |_____| End |-----| | ||
97 | * | CPS |-----' '-----|_____| |_____|-----' '-----| Del | | ||
98 | * '-----' .-----. _____ .-.._ _..-. _____ .-----. '-----' | ||
99 | * SHIFT | ||CTRL | / / \ \ | BSp || | SHIFT | ||
100 | * '-----':_____|/ ENT / \ SPC \|_____:'-----' | ||
101 | * '--.._/ \_..--' | ||
102 | */ | ||
103 | [_NAV] = LAYOUT( | ||
104 | KC_ESC , KC_VOLD, KC_MUTE, KC_VOLU, XXXXXXX, XXXXXXX, KC_PGDN, KC_UP , KC_PGUP, KC_BSPC, | ||
105 | KC_TAB , KC_MPRV, KC_MPLY, KC_MNXT, XXXXXXX, KC_HOME, KC_LEFT, KC_DOWN, KC_RGHT, KC_QUOT, | ||
106 | LSFT_T(KC_CAPS), XXXXXXX, KC_MSTP, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_END , RSFT_T(KC_DEL) , | ||
107 | XXXXXXX, _______, _______, _______, KC_BSPC, XXXXXXX | ||
108 | ), | ||
109 | |||
110 | /* | ||
111 | * Numbers | ||
112 | * _____ _____ | ||
113 | * .-----| 3 |-----._____ _____.-----| 8 |-----. | ||
114 | * .-----| 2 |_____| 4 | 5 | | 6 | 7 |_____| 9 |-----. | ||
115 | * | 1 |-----| F3 |-----|_____| |_____|-----| F8 |-----| 0 | | ||
116 | * |-----| F2 |_____| F4 | F5 | | F6 | F7 |_____| F9 |-----| | ||
117 | * | F1 |-----| Scr |-----|_____| |_____|-----| |-----| F10 | | ||
118 | * |-----| TMg |_____| |Swap | | | |_____| F11 |-----| | ||
119 | * |Shift|-----' '-----|_____| |_____|-----' '-----| F12 | | ||
120 | * '-----' .-----. _____ .-.._ _..-. _____ .-----. '-----' | ||
121 | * | ||CTRL | / / \ \ | BSp || | SHIFT | ||
122 | * '-----':_____|/ ENT / \ SPC \|_____:'-----' | ||
123 | * '--.._/ \_..--' | ||
124 | */ | ||
125 | [_NUM] = LAYOUT( | ||
126 | KC_1 , KC_2 , KC_3 , KC_4 , KC_5 , KC_6 , KC_7 , KC_8 , KC_9 , KC_0 , | ||
127 | KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , | ||
128 | KC_LSFT, LCA(KC_DEL), SWIN(KC_S), XXXXXXX, KC_THUMB_SWAP, XXXXXXX, XXXXXXX, XXXXXXX, KC_F11 , RSFT_T(KC_F12) , | ||
129 | XXXXXXX, _______, _______, _______, KC_BSPC, XXXXXXX | ||
130 | ), | ||
131 | }; | ||
132 | |||
133 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
134 | switch (keycode) { | ||
135 | |||
136 | /* Space Enter swap */ | ||
137 | case KC_THUMB_SWAP: | ||
138 | if (record->event.pressed) { | ||
139 | unregister_code(KC_SPC); | ||
140 | unregister_code(KC_ENT); | ||
141 | swap_space_enter = !swap_space_enter; | ||
142 | } | ||
143 | return false; | ||
144 | break; | ||
145 | |||
146 | case KC_ENT: | ||
147 | if (swap_space_enter) { | ||
148 | if (record->event.pressed) { | ||
149 | register_code(KC_SPC); | ||
150 | } else { | ||
151 | unregister_code(KC_SPC); | ||
152 | } | ||
153 | return false; | ||
154 | } | ||
155 | break; | ||
156 | case KC_SPC: | ||
157 | if (swap_space_enter) { | ||
158 | if (record->event.pressed) { | ||
159 | register_code(KC_ENT); | ||
160 | } else { | ||
161 | unregister_code(KC_ENT); | ||
162 | } | ||
163 | return false; | ||
164 | } | ||
165 | break; | ||
166 | } | ||
167 | return true; | ||
168 | } | ||
diff --git a/keyboards/3w6/keymaps/helltm/rules.mk b/keyboards/3w6/keymaps/helltm/rules.mk new file mode 100644 index 000000000..df85626f5 --- /dev/null +++ b/keyboards/3w6/keymaps/helltm/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | # Combos | ||
2 | COMBO_ENABLE = yes | ||
diff --git a/keyboards/3w6/keymaps/manna-harbour_miryoku/config.h b/keyboards/3w6/keymaps/manna-harbour_miryoku/config.h new file mode 100644 index 000000000..fb567ad7d --- /dev/null +++ b/keyboards/3w6/keymaps/manna-harbour_miryoku/config.h | |||
@@ -0,0 +1,32 @@ | |||
1 | /* Copyright 2021 weteor | ||
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 | // generated from users/manna-harbour_miryoku/miryoku.org -*- buffer-read-only: t -*- | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #define LAYOUT_miryoku( \ | ||
22 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, \ | ||
23 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, \ | ||
24 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, \ | ||
25 | N30, N31, K32, K33, K34, K35, K36, K37, N38, N39 \ | ||
26 | ) \ | ||
27 | LAYOUT( \ | ||
28 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, \ | ||
29 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, \ | ||
30 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, \ | ||
31 | K32, K33, K34, K35, K36, K37 \ | ||
32 | ) | ||
diff --git a/keyboards/3w6/keymaps/manna-harbour_miryoku/keymap.c b/keyboards/3w6/keymaps/manna-harbour_miryoku/keymap.c new file mode 100644 index 000000000..74df5e0fe --- /dev/null +++ b/keyboards/3w6/keymaps/manna-harbour_miryoku/keymap.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 weteor | ||
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 | // generated from users/manna-harbour_miryoku/miryoku.org -*- buffer-read-only: t -*- | ||