diff options
Diffstat (limited to 'keyboards/boardwalk/keymaps')
26 files changed, 985 insertions, 0 deletions
diff --git a/keyboards/boardwalk/keymaps/brendanwr/config.h b/keyboards/boardwalk/keymaps/brendanwr/config.h new file mode 100644 index 000000000..a2530241f --- /dev/null +++ b/keyboards/boardwalk/keymaps/brendanwr/config.h | |||
@@ -0,0 +1,16 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #pragma once | ||
diff --git a/keyboards/boardwalk/keymaps/brendanwr/keymap.c b/keyboards/boardwalk/keymaps/brendanwr/keymap.c new file mode 100644 index 000000000..b428651e7 --- /dev/null +++ b/keyboards/boardwalk/keymaps/brendanwr/keymap.c | |||
@@ -0,0 +1,95 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | enum layer { | ||
19 | _BASE, | ||
20 | _FN, | ||
21 | _BACKLIT | ||
22 | }; | ||
23 | |||
24 | |||
25 | #define FN MO(_FN) | ||
26 | #define BACKLIT MO(_BACKLIT) | ||
27 | |||
28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
29 | |||
30 | /* BASE | ||
31 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
32 | * | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | + | \ | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
34 | * | TAB | Q | W | E | R | T | Y | U | I | O | P | [ | ] | BACKSP | | ||
35 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
36 | * | LCTRL | A | S | D | F | G | H | J | K | L | ; | ' | ENTER | HOME | | ||
37 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
38 | * | LSHIFT | Z | X | C | V | B | N | M | , | . | / | RSHIFT | FN | END | | ||
39 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
40 | * | | LALT | LGUI | SPACE | RGUI | RALT | | | ||
41 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
42 | */ | ||
43 | |||
44 | [_BASE] = LAYOUT_ortho_7u( | ||
45 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, | ||
46 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, | ||
47 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_HOME, | ||
48 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, FN, KC_END, | ||
49 | KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT | ||
50 | ), | ||
51 | |||
52 | /* FUNCTION | ||
53 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
54 | * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | ` | | ||
55 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
56 | * | | | | | | | | | | | UP | | | DEL | | ||
57 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
58 | * | | VOLD | VOLU | MUTE | | | | | | | LEFT | RIGHT | | PG_UP | | ||
59 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
60 | * | | | | | | | | | | | DOWN | | | PG_DN | | ||
61 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
62 | * | | | | | | | | | ||
63 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
64 | */ | ||
65 | |||
66 | [_FN] = LAYOUT_ortho_7u( | ||
67 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_GRV, | ||
68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP, _______, _______, KC_DEL, | ||
69 | _______, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_RGHT, _______, KC_PGUP, | ||
70 | BACKLIT, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DOWN, _______, _______, KC_PGDN, | ||
71 | _______, _______, _______, _______, _______ | ||
72 | ), | ||
73 | |||
74 | /* BACKLIT | ||
75 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
76 | * | | | | | | | | | | | | | | | | ||
77 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
78 | * | | RGBTOG | RGBMOD | RGBHUI | RGBHUD | RGBSAI | RGBSAD | RGBVAI | RGBVAD | | | | | | | ||
79 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
80 | * | | | | | | | | | | | | | | | | ||
81 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
82 | * | | | | | | | | | | | | | | | | ||
83 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
84 | * | | | | | | | | | ||
85 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
86 | */ | ||
87 | |||
88 | [_BACKLIT] = LAYOUT_ortho_7u( | ||
89 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
90 | _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______, | ||
91 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
92 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
93 | _______, _______, _______, _______, _______ | ||
94 | ) | ||
95 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default/keymap.c b/keyboards/boardwalk/keymaps/default/keymap.c new file mode 100644 index 000000000..6ee85e499 --- /dev/null +++ b/keyboards/boardwalk/keymaps/default/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer_names { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | |||
26 | /* Base Layer | ||
27 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
28 | * | ESC | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
29 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
30 | * | TAB | Q | W | E | R | T | [ | ] | Y | U | I | O | P | ' | | ||
31 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
32 | * | CAP LK | A | S | D | F | G | HOME | PG UP | H | J | K | L | ; | ENTER | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
34 | * | LSHIFT | Z | X | C | V | B | END | PG DN | N | M | , | . | / | RSHIFT | | ||
35 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
36 | * | LCTRL | LGUI | FN | LALT | SPACE | SPACE | SPACE | SPACE | SPACE | LEFT | DOWN | UP | RIGHT | RCTRL | | ||
37 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BASE] = LAYOUT_ortho_5x14( | ||
40 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
44 | KC_LCTL, KC_LGUI, MO(_FN), KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_RCTL | ||
45 | ), | ||
46 | |||
47 | /* Function Layer | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
51 | * | | | MENU | | | | | | | | | | PRT SC | | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
53 | * | | | | | | | | | | | | | | RESET | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
55 | * | | | | | | | | | | MUTE | VOL DN | VOL UP | \ | | | ||
56 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
57 | * | | | | | | | | | | | | | | | | ||
58 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FN] = LAYOUT_ortho_5x14( | ||
61 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
62 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
64 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BSLS, _______, | ||
65 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
66 | ) | ||
67 | |||
68 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default/readme.md b/keyboards/boardwalk/keymaps/default/readme.md new file mode 100644 index 000000000..73cf19b06 --- /dev/null +++ b/keyboards/boardwalk/keymaps/default/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/default_2u_arrow/keymap.c b/keyboards/boardwalk/keymaps/default_2u_arrow/keymap.c new file mode 100644 index 000000000..96b87d1cd --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_2u_arrow/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | |||
26 | /* Base Layer | ||
27 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
28 | * | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | BACKSP | | ||
29 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
30 | * | TAB | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ | | ||
31 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
32 | * | CAP LK | A | S | D | F | G | H | J | K | L | ; | " | ENTER | PG UP | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
34 | * | LSHIFT | Z | X | C | V | B | N | M | , | . | / | SHIFT | UP | PG DN | | ||
35 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
36 | * | LCTRL | LGUI | FN | LALT | SPACE | SPACE | RALT | RGUI | RCTRL | LEFT | DOWN | RIGHT | | ||
37 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BASE] = LAYOUT_2u_arrow( | ||
40 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGUP, | ||
43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
44 | KC_LCTL, KC_LGUI, MO(_FN), KC_LALT, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
45 | ), | ||
46 | |||
47 | /* Function Layer | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
51 | * | | | MENU | | | | | | | | PRT SC | | | | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
53 | * | | | | | | | | | | | | | | HOME | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
55 | * | | | | | | | | MUTE | VOL DN | VOL UP | | | | END | | ||
56 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
57 | * | | | | | | | | | RESET | | | | | ||
58 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FN] = LAYOUT_2u_arrow( | ||
61 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
62 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, _______, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, | ||
64 | _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, KC_END, | ||
65 | _______, _______, _______, _______, _______, _______, _______, _______, RESET, _______, _______, _______ | ||
66 | ) | ||
67 | |||
68 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default_2u_arrow/readme.md b/keyboards/boardwalk/keymaps/default_2u_arrow/readme.md new file mode 100644 index 000000000..2774d6e2b --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_2u_arrow/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default_2u_arrow keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/default_2x2u/keymap.c b/keyboards/boardwalk/keymaps/default_2x2u/keymap.c new file mode 100644 index 000000000..f30d15c0f --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_2x2u/keymap.c | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer_names { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | _RAISE, | ||
23 | }; | ||
24 | |||
25 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
26 | |||
27 | /* Base Layer | ||
28 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
29 | * | ESC | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
30 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
31 | * | TAB | Q | W | E | R | T | [ | ] | Y | U | I | O | P | ' | | ||
32 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
33 | * | CAP LK | A | S | D | F | G | HOME | PG UP | H | J | K | L | ; | ENTER | | ||
34 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
35 | * | LSHIFT | Z | X | C | V | B | END | PG DN | N | M | , | . | / | RSHIFT | | ||
36 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
37 | * | LCTRL | LGUI | FN | LALT | RAISE | SPACE | SPACE | LEFT | DOWN | UP | RIGHT | RCTRL | | ||
38 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
39 | */ | ||
40 | [_BASE] = LAYOUT_ortho_2x2u( | ||
41 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
42 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
43 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
44 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
45 | KC_LCTL, KC_LGUI, MO(_FN), KC_LALT, MO(_RAISE), KC_SPC, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_RCTL | ||
46 | ), | ||
47 | |||
48 | /* Function Layer | ||
49 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
50 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
51 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
52 | * | | | MENU | | | | | | | | | | PRT SC | | | ||
53 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
54 | * | | | | | | | | | | | | | | RESET | | ||
55 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
56 | * | | | | | | | | | | MUTE | VOL DN | VOL UP | \ | | | ||
57 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
58 | * | | | | | | | | | | | | | | ||
59 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
60 | */ | ||
61 | [_FN] = LAYOUT_ortho_2x2u( | ||
62 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
63 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, | ||
64 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
65 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BSLS, _______, | ||
66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
67 | ), | ||
68 | |||
69 | /* Raise Layer | ||
70 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
71 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
72 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
73 | * | | | MENU | | | | | | | | | | PRT SC | | | ||
74 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
75 | * | | | | | | | | | | | | | | RESET | | ||
76 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
77 | * | | | | | | | | | | MUTE | VOL DN | VOL UP | \ | | | ||
78 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
79 | * | | | | | | | | | | | | | | ||
80 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
81 | */ | ||
82 | [_RAISE] = LAYOUT_ortho_2x2u( | ||
83 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
84 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, | ||
85 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
86 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BSLS, _______, | ||
87 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
88 | ) | ||
89 | |||
90 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default_2x2u/readme.md b/keyboards/boardwalk/keymaps/default_2x2u/readme.md new file mode 100644 index 000000000..94a68e744 --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_2x2u/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default_2x2u keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/default_625u_arrow/keymap.c b/keyboards/boardwalk/keymaps/default_625u_arrow/keymap.c new file mode 100644 index 000000000..a609859bb --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_625u_arrow/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | |||
26 | /* Base Layer | ||
27 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
28 | * | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | BACKSP | | ||
29 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
30 | * | TAB | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ | | ||
31 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
32 | * | CAP LK | A | S | D | F | G | H | J | K | L | ; | " | ENTER | PG UP | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
34 | * | LSHIFT | Z | X | C | V | B | N | M | , | . | / | SHIFT | UP | PG DN | | ||
35 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
36 | * | LCTRL | LGUI | LALT | SPACE | FN | RCTRL | LEFT | DOWN | RIGHT | | ||
37 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BASE] = LAYOUT_625u_arrow( | ||
40 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGUP, | ||
43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
44 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(_FN), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
45 | ), | ||
46 | |||
47 | /* Function Layer | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
51 | * | | | MENU | | | | | | | | PRT SC | | | | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
53 | * | | | | | | | | | | | | | | HOME | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
55 | * | | | | | | | | MUTE | VOL DN | VOL UP | | | | END | | ||
56 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
57 | * | | | | | | RESET | | | | | ||
58 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FN] = LAYOUT_625u_arrow( | ||
61 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
62 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, _______, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, | ||
64 | _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, KC_END, | ||
65 | _______, _______, _______, _______, _______, RESET, _______, _______, _______ | ||
66 | ) | ||
67 | |||
68 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default_625u_arrow/readme.md b/keyboards/boardwalk/keymaps/default_625u_arrow/readme.md new file mode 100644 index 000000000..25eca02be --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_625u_arrow/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default_625u_arrow keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/default_ortho_7u/keymap.c b/keyboards/boardwalk/keymaps/default_ortho_7u/keymap.c new file mode 100644 index 000000000..8d61b54a3 --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_ortho_7u/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | |||
26 | /* Base Layer | ||
27 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
28 | * | ESC | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
29 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
30 | * | TAB | Q | W | E | R | T | [ | ] | Y | U | I | O | P | ' | | ||
31 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
32 | * | CAP LK | A | S | D | F | G | HOME | PG UP | H | J | K | L | ; | ENTER | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
34 | * | LSHIFT | Z | X | C | V | B | END | PG DN | N | M | , | . | / | RSHIFT | | ||
35 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
36 | * | LCTRL | LALT | SPACE | RALT | FN | | ||
37 | * '-----------------------------------------------------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BASE] = LAYOUT_ortho_7u( | ||
40 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
44 | KC_LCTL, KC_LALT, KC_SPC, KC_RALT, MO(_FN) | ||
45 | ), | ||
46 | |||
47 | /* Function Layer | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
51 | * | | | MENU | | | | | | | | | | PRT SC | | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
53 | * | | | | | | | | | | | | | | RESET | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
55 | * | | | | | | | | | | MUTE | VOL DN | VOL UP | \ | | | ||
56 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
57 | * | | | | | | | ||
58 | * '-----------------------------------------------------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FN] = LAYOUT_ortho_7u( | ||
61 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
62 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
64 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BSLS, _______, | ||
65 | _______, _______, _______, _______, _______ | ||
66 | ) | ||
67 | |||
68 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default_ortho_7u/readme.md b/keyboards/boardwalk/keymaps/default_ortho_7u/readme.md new file mode 100644 index 000000000..57fa07eab --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_ortho_7u/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default_ortho_7u keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/default_ortho_hhkb/keymap.c b/keyboards/boardwalk/keymaps/default_ortho_hhkb/keymap.c new file mode 100644 index 000000000..d9819d9cc --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_ortho_hhkb/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | |||
26 | /* Base Layer | ||
27 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
28 | * | ESC | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
29 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
30 | * | TAB | Q | W | E | R | T | [ | ] | Y | U | I | O | P | ' | | ||
31 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
32 | * | CAP LK | A | S | D | F | G | HOME | PG UP | H | J | K | L | ; | ENTER | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
34 | * | LSHIFT | Z | X | C | V | B | END | PG DN | N | M | , | . | / | RSHIFT | | ||
35 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
36 | * | LCTRL | FN | LALT | LGUI | SPACE | SPACE | LEFT | DOWN | UP | RIGHT | | ||
37 | * '-----------------------------------------------------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BASE] = LAYOUT_ortho_hhkb( | ||
40 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
44 | KC_LCTL, MO(_FN), KC_LALT, KC_LGUI, KC_SPC, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
45 | ), | ||
46 | |||
47 | /* Function Layer | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
51 | * | | | MENU | | | | | | | | | | PRT SC | | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
53 | * | | | | | | | | | | | | | | RESET | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
55 | * | | | | | | | | | | MUTE | VOL DN | VOL UP | \ | | | ||
56 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
57 | * | | | | | | | | | | | | ||
58 | * '-----------------------------------------------------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FN] = LAYOUT_ortho_hhkb( | ||
61 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
62 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
64 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BSLS, _______, | ||
65 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
66 | ) | ||
67 | |||
68 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/default_ortho_hhkb/readme.md b/keyboards/boardwalk/keymaps/default_ortho_hhkb/readme.md new file mode 100644 index 000000000..b11c8c400 --- /dev/null +++ b/keyboards/boardwalk/keymaps/default_ortho_hhkb/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default_ortho_hhkb keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/mcallaster/keymap.c b/keyboards/boardwalk/keymaps/mcallaster/keymap.c new file mode 100644 index 000000000..ac1df1b03 --- /dev/null +++ b/keyboards/boardwalk/keymaps/mcallaster/keymap.c | |||
@@ -0,0 +1,54 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | |||
3 | // Layer shorthand | ||
4 | enum layer { | ||
5 | _BASE, | ||
6 | _LOWER, | ||
7 | _RAISE, | ||
8 | _FN | ||
9 | }; | ||
10 | |||
11 | #define LOWER MO(1) | ||
12 | #define RAISE MO(2) | ||
13 | #define FN MO(3) | ||
14 | |||
15 | // Mac sleep | ||
16 | #define __SLEEP S(LCTL(KC_POWER)) | ||
17 | |||
18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
19 | [_BASE] = LAYOUT_ortho_hhkb( | ||
20 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_SLCK, KC_PSCR, KC_6, KC_7, KC_8, KC_9, KC_0, KC_GRV, \ | ||
21 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_HOME, KC_PGUP, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, \ | ||
22 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_END, KC_PGDN, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \ | ||
23 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_DEL, KC_INS, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, \ | ||
24 | KC_CAPS, KC_LALT, KC_LGUI, RAISE, KC_SPC, KC_SPC, LOWER, KC_RGUI, KC_RALT, KC_RCTL | ||
25 | ), | ||
26 | |||
27 | [_LOWER] = LAYOUT_ortho_hhkb( | ||
28 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_PAUS, KC_NLCK, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______, \ | ||
29 | _______, KC_1, KC_2, KC_3, KC_4, KC_5, _______, _______, KC_6, KC_7, KC_8, KC_9, KC_0, _______, \ | ||
30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, _______, \ | ||
31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_GRV, KC_BSLS, _______, _______, _______, \ | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
33 | ), | ||
34 | |||
35 | [_RAISE] = LAYOUT_ortho_hhkb( | ||
36 | _______, KC_F11, KC_F12, _______, _______, _______, KC_PAUS, KC_NLCK, _______, _______, _______, _______, _______, _______, \ | ||
37 | _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______, _______, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, \ | ||
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, _______, \ | ||
39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_TILD, KC_PIPE, _______, _______, _______, \ | ||
40 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
41 | ), | ||
42 | |||
43 | [_FN] = LAYOUT_ortho_hhkb( | ||
44 | __SLEEP, _______, _______, _______, _______, _______, RGB_TOG, RGB_MOD, _______, _______, _______, _______, _______, _______, \ | ||
45 | _______, RESET, _______, KC_MPRV, KC_MNXT, _______, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, \ | ||
46 | _______, KC_VOLD, KC_VOLU, KC_MUTE, KC_MPLY, _______, RGB_SAD, RGB_HUD, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, \ | ||
47 | _______, _______, _______, _______, _______, _______, RGB_VAD, RGB_VAI, _______, _______, _______, _______, _______, _______, \ | ||
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
49 | ) | ||
50 | }; | ||
51 | |||
52 | layer_state_t layer_state_set_user(layer_state_t state) { | ||
53 | return update_tri_layer_state(state, _LOWER, _RAISE, _FN); | ||
54 | } | ||
diff --git a/keyboards/boardwalk/keymaps/nchristus/config.h b/keyboards/boardwalk/keymaps/nchristus/config.h new file mode 100644 index 000000000..a2530241f --- /dev/null +++ b/keyboards/boardwalk/keymaps/nchristus/config.h | |||
@@ -0,0 +1,16 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #pragma once | ||
diff --git a/keyboards/boardwalk/keymaps/nchristus/keymap.c b/keyboards/boardwalk/keymaps/nchristus/keymap.c new file mode 100644 index 000000000..57b6736cb --- /dev/null +++ b/keyboards/boardwalk/keymaps/nchristus/keymap.c | |||
@@ -0,0 +1,62 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | #define _QW 0 | ||
20 | |||
21 | #define LOWER LT(1, KC_SPC) | ||
22 | #define RAISE LT(2, KC_ENT) | ||
23 | |||
24 | #define CTRLESC CTL_T(KC_ESC) | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | /* Keymap _QWE: Base Layer (Default Layer) */ | ||
28 | [_QW] = LAYOUT_ortho_hhkb( | ||
29 | KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, _______, _______, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, \ | ||
30 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, _______, _______, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, \ | ||
31 | CTRLESC, KC_A, KC_S, KC_D, KC_F, KC_G, _______, _______, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \ | ||
32 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, _______, _______, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, \ | ||
33 | MO(3), KC_LCTL, KC_LALT, KC_LGUI, RAISE, LOWER, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \ | ||
34 | ), | ||
35 | |||
36 | /* Keymap LOWER: Lower Layer */ | ||
37 | [1] = LAYOUT_ortho_hhkb( | ||
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
40 | _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_PLUS, KC_LBRC, KC_RBRC, KC_BSLS, _______, \ | ||
41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
42 | _______, _______, _______, _______, XXXXXXX, _______, _______, _______, _______, _______ | ||
43 | ), | ||
44 | |||
45 | /* Keymap RAISE: Raise Layer */ | ||
46 | [2] = LAYOUT_ortho_hhkb( | ||
47 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
49 | _______, _______, _______, _______, _______, _______, _______, _______, KC_UNDS, KC_EQL, KC_LCBR, KC_RCBR, KC_PIPE, _______, \ | ||
50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
51 | _______, _______, _______, _______, _______, XXXXXXX, _______, _______, _______, _______ | ||
52 | ), | ||
53 | |||
54 | /* Keymap _FL: Function Layer */ | ||
55 | [3] = LAYOUT_ortho_hhkb( | ||
56 | RESET, _______, _______, _______, _______, _______, RGB_TOG, RGB_MOD, _______, _______, _______, _______, _______, _______, \ | ||
57 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
58 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
59 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
60 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
61 | ) | ||
62 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/nchristus/readme.md b/keyboards/boardwalk/keymaps/nchristus/readme.md new file mode 100644 index 000000000..73cf19b06 --- /dev/null +++ b/keyboards/boardwalk/keymaps/nchristus/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/nchristus/rules.mk b/keyboards/boardwalk/keymaps/nchristus/rules.mk new file mode 100644 index 000000000..b07a6475b --- /dev/null +++ b/keyboards/boardwalk/keymaps/nchristus/rules.mk | |||
@@ -0,0 +1,14 @@ | |||
1 | # This program is free software: you can redistribute it and/or modify | ||
2 | # it under the terms of the GNU General Public License as published by | ||
3 | # the Free Software Foundation, either version 2 of the License, or | ||
4 | # (at your option) any later version. | ||
5 | # | ||
6 | # This program is distributed in the hope that it will be useful, | ||
7 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
8 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
9 | # GNU General Public License for more details. | ||
10 | # | ||
11 | # You should have received a copy of the GNU General Public License | ||
12 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
13 | |||
14 | RGBLIGHT_ENABLE = yes | ||
diff --git a/keyboards/boardwalk/keymaps/niclake/config.h b/keyboards/boardwalk/keymaps/niclake/config.h new file mode 100644 index 000000000..9028fcf9f --- /dev/null +++ b/keyboards/boardwalk/keymaps/niclake/config.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #pragma once | ||
17 | |||
18 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/boardwalk/keymaps/niclake/keymap.c b/keyboards/boardwalk/keymaps/niclake/keymap.c new file mode 100644 index 000000000..b6a986c0d --- /dev/null +++ b/keyboards/boardwalk/keymaps/niclake/keymap.c | |||
@@ -0,0 +1,149 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | enum layer_names { | ||
19 | _BASE, | ||
20 | _QWERTY, | ||
21 | _FN, | ||
22 | _NUM, | ||
23 | _ADJ, | ||
24 | }; | ||
25 | |||
26 | enum custom_keycodes { | ||
27 | QWERTY = SAFE_RANGE, | ||
28 | COLEMAK, | ||
29 | FN, | ||
30 | NUM, | ||
31 | ADJ, | ||
32 | MACWIN | ||
33 | }; | ||
34 | |||
35 | #define QWERTY DF(_QWERTY) | ||
36 | #define COLEMAK DF(_BASE) | ||
37 | #define FN MO(_FN) | ||
38 | #define NUM TT(_NUM) | ||
39 | #define ADJ MO(_ADJ) | ||
40 | #define MACWIN MAGIC_TOGGLE_ALT_GUI | ||
41 | #define RGB_ON RGB_MODE_PLAIN | ||
42 | |||
43 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
44 | |||
45 | /* Base Layer (Colemak) | ||
46 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
47 | * | ` | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
48 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
49 | * | TAB | Q | W | F | P | G | [ | ] | J | L | U | Y | ; | \ | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
51 | * | _FN | A | R | S | T | D | HOME | PG UP | H | N | E | I | O | ' | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
53 | * | LSHIFT | Z | X | C | V | B | END | PG DN | K | M | , | . | / | RSHIFT | | ||
54 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
55 | * | LCTRL | LALT | LGUI | TG_NUM | ENTER | SPACE | LEFT | DOWN | UP | RIGHT | | ||
56 | * '-----------------------------------------------------------------------------------------------------------' | ||
57 | */ | ||
58 | [_BASE] = LAYOUT_ortho_hhkb( | ||
59 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
60 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_LBRC, KC_RBRC, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSLS, | ||
61 | FN, KC_A, KC_R, KC_S, KC_T, KC_D, KC_HOME, KC_PGUP, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, | ||
62 | KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC, | ||
63 | KC_LCTL, KC_LALT, KC_LGUI, NUM, KC_ENT, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
64 | ), | ||
65 | |||
66 | /* QWERTY | ||
67 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
68 | * | ` | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
69 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
70 | * | TAB | Q | W | E | R | T | [ | ] | Y | U | I | O | P | \ | | ||
71 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
72 | * | _FN | A | S | D | F | G | HOME | PG UP | H | J | K | L | ; | ' | | ||
73 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
74 | * | LSHIFT | Z | X | C | V | B | END | PG DN | N | M | , | . | / | RSHIFT | | ||
75 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
76 | * | LCTRL | LALT | LGUI | TG_NUM | ENTER | SPACE | LEFT | DOWN | UP | RIGHT | | ||
77 | * '-----------------------------------------------------------------------------------------------------------' | ||
78 | */ | ||
79 | [_QWERTY] = LAYOUT_ortho_hhkb( | ||
80 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
81 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, | ||
82 | FN, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
83 | KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC, | ||
84 | KC_LCTL, KC_LALT, KC_LGUI, NUM, KC_ENT, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
85 | ), | ||
86 | |||
87 | /* FN | ||
88 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
89 | * | ESC | F1 | F2 | F3 | F4 | F5 | F11 | F12 | F6 | F7 | F8 | F9 | F10 | DEL | | ||
90 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
91 | * | | Prev | Play | Next | | | | | | Pg Up | Up | Pg Dn | PRT SC | | | ||
92 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
93 | * | XXXXXX | | Mute | Vol Dn | Vol Up | | | | | Left | Down | Right | | | | ||
94 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
95 | * | | | | | | | | | | Home | | End | | CapsLk | | ||
96 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
97 | * | | | | _ADJ | | | | | | | | ||
98 | * '-----------------------------------------------------------------------------------------------------------' | ||
99 | */ | ||
100 | [_FN] = LAYOUT_ortho_hhkb( | ||
101 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F11, KC_F12, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_DEL, | ||
102 | _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, _______, _______, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, _______, | ||
103 | _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, | ||
104 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, KC_END, _______, KC_CAPS, | ||
105 | _______, _______, _______, ADJ, _______, _______, _______, _______, _______, _______ | ||
106 | ), | ||
107 | |||
108 | /* Num Pad (NUM) | ||
109 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
110 | * | | | | | | | | | Num Lk | KP / | KP * | KP - | Scr Lk | Pause | | ||
111 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
112 | * | | | | | | | | | KP 7 | KP 8 | KP 9 | KP + | | | | ||
113 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
114 | * | _ADJ | | | | | | | | KP 4 | KP 5 | KP 6 | KP + | | | | ||
115 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
116 | * | | | | | | | | | KP 1 | KP 2 | KP 3 | KP Ent | | | | ||
117 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
118 | * | | | | XXXXXX | | KP 0 | KP 0 | KP . | KP Ent | | | ||
119 | * '-----------------------------------------------------------------------------------------------------------' | ||
120 | */ | ||
121 | [_NUM] = LAYOUT_ortho_hhkb( | ||
122 | _______, _______, _______, _______, _______, _______, _______, _______, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_SLCK, KC_PAUS, | ||
123 | _______, _______, _______, _______, _______, _______, _______, _______, KC_KP_7, KC_KP_8, KC_KP_9, KC_PPLS, _______, _______, | ||
124 | ADJ, _______, _______, _______, _______, _______, _______, _______, KC_KP_4, KC_KP_5, KC_KP_6, KC_PPLS, _______, _______, | ||
125 | _______, _______, _______, _______, _______, _______, _______, _______, KC_KP_1, KC_KP_2, KC_KP_3, KC_PENT, _______, _______, | ||
126 | _______, _______, _______, _______, _______, KC_KP_0, KC_KP_0, KC_PDOT, KC_PENT, _______ | ||
127 | ), | ||
128 | |||
129 | /* ADJUST + RGB Control | ||
130 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
131 | * | | Static | Breath | Rainbw | Swirl | Gradnt | Twnkle | Test | | | | | | | | ||
132 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
133 | * | | On/Off | ModeUp | Hue Up | Sat Up | Val Up | | | | | | | RESET | | | ||
134 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
135 | * | XXXXXX | MACWIN | | Hue Dn | Sat Dn | Val Dn | | | | | | | | | | ||
136 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
137 | * | | Colemak| QWERTY | | | | | | | | | | | | | ||
138 | * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------' | ||
139 | * | | | | XXXXXX | | | | | | | | ||
140 | * '-----------------------------------------------------------------------------------------------------------' | ||
141 | */ | ||
142 | [_ADJ] = LAYOUT_ortho_hhkb( | ||
143 | XXXXXXX, RGB_ON, RGB_M_B, RGB_M_R, RGB_M_SW, RGB_M_G, RGB_M_TW, RGB_M_T, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
144 | XXXXXXX, RGB_TOG, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, RESET, XXXXXXX, | ||
145 | XXXXXXX, MACWIN, XXXXXXX, RGB_HUD, RGB_SAD, RGB_VAD, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
146 | XXXXXXX, COLEMAK, QWERTY, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
147 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX | ||
148 | ) | ||
149 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/niclake/readme.md b/keyboards/boardwalk/keymaps/niclake/readme.md new file mode 100644 index 000000000..fb772a9a2 --- /dev/null +++ b/keyboards/boardwalk/keymaps/niclake/readme.md | |||
@@ -0,0 +1,8 @@ | |||
1 | # Nic Lake's Boardwalk Layout | ||
2 | |||
3 | This is Nic's Boardwalk layout, which is based off of the default Pok3r layout. | ||
4 | |||
5 | - Colemak base layer w/ QWERTY support | ||
6 | - Bottom row set up for Mac usage (use `MACWIN`/`AG_TOGG` to toggle) | ||
7 | - Latching Numpad layer for data entry | ||
8 | - Uses [Space Cadet shift keys](https://docs.qmk.fm/#/feature_space_cadet?id=usage) \ No newline at end of file | ||
diff --git a/keyboards/boardwalk/keymaps/niclake/rules.mk b/keyboards/boardwalk/keymaps/niclake/rules.mk new file mode 100644 index 000000000..31d6053e0 --- /dev/null +++ b/keyboards/boardwalk/keymaps/niclake/rules.mk | |||
@@ -0,0 +1,3 @@ | |||
1 | COMMAND_ENABLE = no | ||
2 | RGBLIGHT_ENABLE = yes | ||
3 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
diff --git a/keyboards/boardwalk/keymaps/via/keymap.c b/keyboards/boardwalk/keymaps/via/keymap.c new file mode 100644 index 000000000..d5b1795b6 --- /dev/null +++ b/keyboards/boardwalk/keymaps/via/keymap.c | |||
@@ -0,0 +1,110 @@ | |||
1 | /* | ||
2 | * This program is free software: you can redistribute it and/or modify | ||
3 | * it under the terms of the GNU General Public License as published by | ||
4 | * the Free Software Foundation, either version 2 of the License, or | ||
5 | * (at your option) any later version. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | |||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Layer shorthand | ||
19 | enum layer_names { | ||
20 | _BASE, | ||
21 | _FN, | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | |||
26 | /* Base Layer | ||
27 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
28 | * | ESC | 1 | 2 | 3 | 4 | 5 | - | = | 6 | 7 | 8 | 9 | 0 | BACKSP | | ||
29 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
30 | * | TAB | Q | W | E | R | T | [ | ] | Y | U | I | O | P | ' | | ||
31 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
32 | * | CAP LK | A | S | D | F | G | HOME | PG UP | H | J | K | L | ; | ENTER | | ||
33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
34 | * | LSHIFT | Z | X | C | V | B | END | PG DN | N | M | , | . | / | RSHIFT | | ||
35 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
36 | * | LCTRL | LGUI | FN | LALT | SPACE | SPACE | SPACE | SPACE | SPACE | LEFT | DOWN | UP | RIGHT | RCTRL | | ||
37 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BASE] = LAYOUT_ortho_5x14( | ||
40 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
44 | KC_LCTL, KC_LGUI, MO(_FN), KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_RCTL | ||
45 | ), | ||
46 | |||
47 | /* Function Layer | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | DEL | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
51 | * | | | MENU | | | | | | | | | | PRT SC | | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
53 | * | | | | | | | | | | | | | | RESET | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
55 | * | | | | | | | | | | MUTE | VOL DN | VOL UP | \ | | | ||
56 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
57 | * | | | | | | | | | | | | | | | | ||
58 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FN] = LAYOUT_ortho_5x14( | ||
61 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
62 | _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
64 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BSLS, _______, | ||
65 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
66 | ), | ||
67 | |||
68 | /* Empty Layer | ||
69 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
70 | * | | | | | | | | | | | | | | | | ||
71 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
72 | * | | | | | | | | | | | | | | | | ||
73 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
74 | * | | | | | | | | | | | | | | | | ||
75 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
76 | * | | | | | | | | | | | | | | | | ||
77 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
78 | * | | | | | | | | | | | | | | | | ||
79 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
80 | */ | ||
81 | [2] = LAYOUT_ortho_5x14( | ||
82 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
83 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
84 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
85 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
86 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
87 | ), | ||
88 | |||
89 | /* Empty Layer | ||
90 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
91 | * | | | | | | | | | | | | | | | | ||
92 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
93 | * | | | | | | | | | | | | | | | | ||
94 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
95 | * | | | | | | | | | | | | | | | | ||
96 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
97 | * | | | | | | | | | | | | | | | | ||
98 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
99 | * | | | | | | | | | | | | | | | | ||
100 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
101 | */ | ||
102 | [3] = LAYOUT_ortho_5x14( | ||
103 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
104 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
105 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
106 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
107 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
108 | ) | ||
109 | |||
110 | }; | ||
diff --git a/keyboards/boardwalk/keymaps/via/readme.md b/keyboards/boardwalk/keymaps/via/readme.md new file mode 100644 index 000000000..86a7b902f --- /dev/null +++ b/keyboards/boardwalk/keymaps/via/readme.md | |||
@@ -0,0 +1 @@ | |||
# The via keymap for Boardwalk | |||
diff --git a/keyboards/boardwalk/keymaps/via/rules.mk b/keyboards/boardwalk/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/boardwalk/keymaps/via/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||