]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/shiro/keymaps/default/keymap.c
[Keyboard] add macro pad "Shiro" (#6338)
[qmk_firmware.git] / keyboards / shiro / keymaps / default / keymap.c
1 /* Copyright 2019 T.Shinohara
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 enum layer_number {
19   _NUMBER = 0,
20   _CURSOL,
21   _MOUSE
22 };
23
24 #define NUMBER TO(_NUMBER)
25 #define CURSOL TO(_CURSOL)
26 #define MOUSE  TO(_MOUSE)
27
28 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
29   [_NUMBER] = LAYOUT( 
30     NUMBER,   CURSOL,   MOUSE,
31     KC_P7,    KC_P8,    KC_P9,
32     KC_P4,    KC_P5,    KC_P6,
33     KC_P1,    KC_P2,    KC_P3,
34     KC_P0,    KC_BSPC,  KC_ENT
35   ),
36   [_CURSOL] = LAYOUT( 
37     NUMBER,   CURSOL,   MOUSE,
38     KC_HOME,  KC_UP,    KC_PGUP,
39     KC_LEFT,  KC_ESC,   KC_RIGHT,
40     KC_END,   KC_DOWN,  KC_PGDN,
41     KC_DEL,   KC_BSPC,  KC_ENT
42   ), 
43   [_MOUSE] = LAYOUT( 
44     NUMBER,   CURSOL,   MOUSE,
45     KC_CUT,   KC_COPY,  KC_PSTE,
46     KC_UNDO,  KC_FIND,  KC_AGIN,
47     XXXXXXX,  XXXXXXX,  XXXXXXX,
48     KC_DEL,   KC_BSPC,  KC_ENT
49   ),
50 };