diff options
Diffstat (limited to 'quantum/template/base/keymaps/default/keymap.c')
-rw-r--r-- | quantum/template/base/keymaps/default/keymap.c | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/quantum/template/base/keymaps/default/keymap.c b/quantum/template/base/keymaps/default/keymap.c new file mode 100644 index 000000000..d4bda895c --- /dev/null +++ b/quantum/template/base/keymaps/default/keymap.c | |||
@@ -0,0 +1,59 @@ | |||
1 | /* Copyright 2017 REPLACE_WITH_YOUR_NAME | ||
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 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
19 | [0] = LAYOUT( /* Base */ | ||
20 | KC_A, KC_1, KC_H, \ | ||
21 | KC_TAB, KC_SPC \ | ||
22 | ), | ||
23 | }; | ||
24 | |||
25 | const uint16_t PROGMEM fn_actions[] = { | ||
26 | |||
27 | }; | ||
28 | |||
29 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
30 | { | ||
31 | // MACRODOWN only works in this function | ||
32 | switch(id) { | ||
33 | case 0: | ||
34 | if (record->event.pressed) { | ||
35 | register_code(KC_RSFT); | ||
36 | } else { | ||
37 | unregister_code(KC_RSFT); | ||
38 | } | ||
39 | break; | ||
40 | } | ||
41 | return MACRO_NONE; | ||
42 | }; | ||
43 | |||
44 | |||
45 | void matrix_init_user(void) { | ||
46 | |||
47 | } | ||
48 | |||
49 | void matrix_scan_user(void) { | ||
50 | |||
51 | } | ||
52 | |||
53 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
54 | return true; | ||
55 | } | ||
56 | |||
57 | void led_set_user(uint8_t usb_led) { | ||
58 | |||
59 | } | ||