diff options
Diffstat (limited to 'keyboards/catch22/keymaps/default/keymap.c')
| -rw-r--r-- | keyboards/catch22/keymaps/default/keymap.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/catch22/keymaps/default/keymap.c b/keyboards/catch22/keymaps/default/keymap.c new file mode 100644 index 000000000..f0300d27f --- /dev/null +++ b/keyboards/catch22/keymaps/default/keymap.c | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | #define _BASE 0 | ||
| 4 | #define _FN 1 | ||
| 5 | |||
| 6 | #define _______ KC_TRNS | ||
| 7 | |||
| 8 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 9 | [_BASE] = LAYOUT( /* Base */ | ||
| 10 | KC_A, KC_B, KC_C, KC_D, \ | ||
| 11 | KC_E, KC_F, KC_G, KC_H, \ | ||
| 12 | MO(_FN), KC_I, KC_J, KC_K, KC_L, \ | ||
| 13 | KC_1, KC_M, KC_N, KC_O, KC_P, \ | ||
| 14 | KC_Q, KC_R, KC_S, KC_T \ | ||
| 15 | ), | ||
| 16 | [_FN] = LAYOUT( | ||
| 17 | RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUI, \ | ||
| 18 | _______, _______, _______, _______, \ | ||
| 19 | _______, _______, _______, _______, _______, \ | ||
| 20 | KC_2, _______, _______, _______, _______, \ | ||
| 21 | _______, _______, _______, _______ \ | ||
| 22 | ), | ||
| 23 | }; | ||
| 24 | |||
| 25 | const uint16_t PROGMEM fn_actions[] = { | ||
| 26 | }; | ||
| 27 | |||
| 28 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // MACRODOWN only works in this function | ||
| 29 | { | ||
| 30 | return MACRO_NONE; | ||
| 31 | }; | ||
