aboutsummaryrefslogtreecommitdiff
path: root/keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c')
-rw-r--r--keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c b/keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c
new file mode 100644
index 000000000..2d8f5dce9
--- /dev/null
+++ b/keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c
@@ -0,0 +1,67 @@
1/*
2Copyright 2020 <contact@vwolf.be>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#include QMK_KEYBOARD_H
16
17enum layers {
18 _LAYER0,
19 _LAYER1,
20};
21
22const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
23
24 /*
25 * ┌───┬───┬───┬───┐
26 * │Num│ / │ * │ - │
27 * ┌───┬─┼───┼───┼───┼───┤
28 * │Cal│ │ 7 │ 8 │ 9 │ │
29 * ├───┼─┼───┼───┼───┤ + │
30 * │WWW│ │ 4 │ 5 │ 6 │ │
31 * ├───┼─┼───┼───┼───┼───┤
32 * │Mai│ │ 1 │ 2 │ 3 │ E │
33 * ├───┼─┼───┴───┼───┤ N │
34 * │FN │ │ 0 │ . │ T │
35 * └───┴─┴───────┴───┴───┘
36 */
37
38 [_LAYER0] = LAYOUT(
39 KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
40 KC_CALC, KC_P7, KC_P8, KC_P9, KC_PPLS,
41 KC_WSCH, KC_P4, KC_P5, KC_P6,
42 KC_MAIL, KC_P1, KC_P2, KC_P3, KC_PENT,
43 MO(1), KC_P0, KC_PDOT
44 ),
45
46 /*
47 * ┌───┬───┬───┬───┐
48 * │Num│ / │ * │-BR│
49 * ┌───┬─┼───┼───┼───┼───┤
50 * │ │ │F7 │F8 │F9 │ │
51 * ├───┼─┼───┼───┼───┤+BR│
52 * │ │ │F4 │F5 │F6 │ │
53 * ├───┼─┼───┼───┼───┼───┤
54 * │ │ │F1 │F2 │F3 │RGB│
55 * ├───┼─┼───┴───┼───┤ │
56 * │FN │ │ │TOG│MOD│
57 * └───┴─┴───────┴───┴───┘
58 */
59
60 [_LAYER1] = LAYOUT(
61 KC_NLCK, KC_PSLS, KC_PAST, RGB_VAD,
62 KC_TRNS, KC_F7, KC_F8, KC_F9, RGB_VAI,
63 KC_TRNS, KC_F4, KC_F5, KC_F6,
64 KC_TRNS, KC_F1, KC_F2, KC_F3, RGB_MOD,
65 KC_TRNS, KC_TRNS, RGB_TOG
66 )
67};