diff options
Diffstat (limited to 'keyboards/cradio/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/cradio/keymaps/default/keymap.c | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/keyboards/cradio/keymaps/default/keymap.c b/keyboards/cradio/keymaps/default/keymap.c new file mode 100644 index 000000000..bb7e2d35e --- /dev/null +++ b/keyboards/cradio/keymaps/default/keymap.c | |||
@@ -0,0 +1,51 @@ | |||
1 | /* Copyright 2018-2021 | ||
2 | * ENDO Katsuhiro <[email protected]> | ||
3 | * David Philip Barr <@davidphilipbarr> | ||
4 | * Pierre Chevalier <[email protected]> | ||
5 | * | ||
6 | * This program is free software: you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation, either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #include QMK_KEYBOARD_H | ||
21 | |||
22 | /* Base layer 0 layout uses home row mods. See the following guide for details: | ||
23 | * https://precondition.github.io/home-row-mods | ||
24 | */ | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | [0] = LAYOUT( | ||
28 | KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, | ||
29 | SFT_T(KC_A),ALT_T(KC_S),CTL_T(KC_D),GUI_T(KC_F), KC_G, KC_H, GUI_T(KC_J),CTL_T(KC_K),ALT_T(KC_L),SFT_T(KC_SCLN), | ||
30 | KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, | ||
31 | LT(2,KC_TAB), KC_ENT, KC_SPC, LT(1,KC_BSPC) | ||
32 | ), | ||
33 | [1] = LAYOUT( | ||
34 | _______, KC_1, KC_2, KC_3, KC_VOLU, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_DQUO, | ||
35 | _______, KC_4, KC_5, KC_6, KC_VOLD, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_QUOT, | ||
36 | KC_CAPS, KC_7, KC_8, KC_9, KC_0, _______, _______, _______, _______, _______, | ||
37 | MO(3), KC_GESC, _______, _______ | ||
38 | ), | ||
39 | [2] = LAYOUT( | ||
40 | _______, KC_LBRC, KC_LCBR, KC_RCBR, _______, KC_CIRC, KC_LPRN, KC_RPRN, KC_RBRC, KC_TILD, | ||
41 | KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_AMPR, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, | ||
42 | _______, _______, _______, _______, _______, KC_ASTR, KC_UNDS, KC_PLUS, KC_PIPE, _______, | ||
43 | _______, _______, KC_DEL, MO(3) | ||
44 | ), | ||
45 | [3] = LAYOUT( | ||
46 | _______, KC_F1, KC_F2, KC_F3, KC_F10, _______, KC_WH_U, KC_WH_D, _______, RESET, | ||
47 | _______, KC_F4, KC_F5, KC_F6, KC_F11, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_INS, | ||
48 | _______, KC_F7, KC_F8, KC_F9, KC_F12, _______, KC_BTN1, KC_BTN2, _______, _______, | ||
49 | _______, _______, _______, _______ | ||
50 | ) | ||
51 | }; | ||