diff options
Diffstat (limited to 'keyboards/boardwalk')
31 files changed, 1651 insertions, 0 deletions
diff --git a/keyboards/boardwalk/boardwalk.h b/keyboards/boardwalk/boardwalk.h new file mode 100644 index 000000000..8a613ce49 --- /dev/null +++ b/keyboards/boardwalk/boardwalk.h | |||
@@ -0,0 +1,93 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "quantum.h" | ||
4 | |||
5 | #define LAYOUT_ortho_5x14( \ | ||
6 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, \ | ||
7 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, \ | ||
8 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, \ | ||
9 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, \ | ||
10 | k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k410, k411, k412, k413 \ | ||
11 | ) \ | ||
12 | { \ | ||
13 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013 }, \ | ||
14 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113 }, \ | ||
15 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213 }, \ | ||
16 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313 }, \ | ||
17 | { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k410, k411, k412, k413 } \ | ||
18 | } | ||
19 | |||
20 | #define LAYOUT_ortho_2x2u( \ | ||
21 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, \ | ||
22 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, \ | ||
23 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, \ | ||
24 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, \ | ||
25 | k40, k41, k42, k43, k44, k45, k47, k49, k410, k411, k412, k413 \ | ||
26 | ) \ | ||
27 | { \ | ||
28 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013 }, \ | ||
29 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113 }, \ | ||
30 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213 }, \ | ||
31 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313 }, \ | ||
32 | { k40, k41, k42, k43, k44, k45, KC_NO, k47, KC_NO, k49, k410, k411, k412, k413 } \ | ||
33 | } | ||
34 | |||
35 | #define LAYOUT_ortho_hhkb( \ | ||
36 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, \ | ||
37 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, \ | ||
38 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, \ | ||
39 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, \ | ||
40 | k41, k42, k43, k44, k45, k47, k49, k410, k411, k412 \ | ||
41 | ) \ | ||
42 | { \ | ||
43 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013 }, \ | ||
44 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113 }, \ | ||
45 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213 }, \ | ||
46 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313 }, \ | ||
47 | { KC_NO, k41, k42, k43, k44, k45, KC_NO, k47, KC_NO, k49, k410, k411, k412, KC_NO } \ | ||
48 | } | ||
49 | |||
50 | #define LAYOUT_ortho_7u( \ | ||
51 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, \ | ||
52 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, \ | ||
53 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, \ | ||
54 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, \ | ||
55 | k41, k42, k46, k411, k412 \ | ||
56 | ) \ | ||
57 | { \ | ||
58 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013 }, \ | ||
59 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113 }, \ | ||
60 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213 }, \ | ||
61 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313 }, \ | ||
62 | { KC_NO, k41, k42, KC_NO, KC_NO, KC_NO, k46, KC_NO, KC_NO, KC_NO, KC_NO, k411, k412, KC_NO } \ | ||
63 | } | ||
64 | |||
65 | #define LAYOUT_2u_arrow( \ | ||
66 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, \ | ||
67 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, \ | ||
68 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, \ | ||
69 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, \ | ||
70 | k40, k41, k42, k43, k44, k46, k48, k49, k410, k411, k412, k413 \ | ||
71 | ) \ | ||
72 | { \ | ||
73 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013 }, \ | ||
74 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113 }, \ | ||
75 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213 }, \ | ||
76 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313 }, \ | ||
77 | { k40, k41, k42, k43, k44, KC_NO, k46, KC_NO, k48, k49, k410, k411, k412, k413 } \ | ||
78 | } | ||
79 | |||
80 | #define LAYOUT_625u_arrow( \ | ||
81 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, \ | ||
82 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, \ | ||
83 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, \ | ||
84 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, \ | ||
85 | k40, k41, k42, k45, k49, k410, k411, k412, k413 \ | ||
86 | ) \ | ||
87 | { \ | ||
88 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013 }, \ | ||
89 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113 }, \ | ||
90 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213 }, \ | ||
91 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313 }, \ | ||
92 | { k40, k41, k42, KC_NO, KC_NO, k45, KC_NO, KC_NO, KC_NO, k49, k410, k411, k412, k413 } \ | ||
93 | } | ||
diff --git a/keyboards/boardwalk/config.h b/keyboards/boardwalk/config.h new file mode 100644 index 000000000..b98b70973 --- /dev/null +++ b/keyboards/boardwalk/config.h | |||
@@ -0,0 +1,83 @@ | |||
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 | #include "config_common.h" | ||
19 | |||
20 | /* USB Device descriptor parameter */ | ||
21 | #define VENDOR_ID 0xCDCD | ||
22 | #define PRODUCT_ID 0x5337 | ||
23 | #define DEVICE_VER 0x0001 | ||
24 | #define MANUFACTURER shensmobile | ||
25 | #define PRODUCT Boardwalk | ||
26 | |||
27 | /* key matrix size */ | ||
28 | #define MATRIX_ROWS 5 | ||
29 | #define MATRIX_COLS 14 | ||
30 | |||
31 | /* | ||
32 | * Keyboard Matrix Assignments | ||
33 | * | ||
34 | * Change this to how you wired your keyboard | ||
35 | * COLS: AVR pins used for columns, left to right | ||
36 | * ROWS: AVR pins used for rows, top to bottom | ||
37 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
38 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
39 | * | ||
40 | */ | ||
41 | #define MATRIX_ROW_PINS { F0, F1, F4, F5, F6 } | ||
42 | #define MATRIX_COL_PINS { F7, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1, D0 } | ||
43 | #define UNUSED_PINS | ||
44 | |||
45 | /* COL2ROW, ROW2COL */ | ||
46 | #define DIODE_DIRECTION COL2ROW | ||
47 | |||
48 | // #define BACKLIGHT_PIN F5 | ||
49 | // #define BACKLIGHT_LEVELS 6 | ||
50 | |||
51 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
52 | #define DEBOUNCE 5 | ||
53 | |||
54 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
55 | #define LOCKING_SUPPORT_ENABLE | ||
56 | /* Locking resynchronize hack */ | ||
57 | #define LOCKING_RESYNC_ENABLE | ||
58 | |||
59 | /* | ||
60 | * Feature disable options | ||
61 | * These options are also useful to firmware size reduction. | ||
62 | */ | ||
63 | |||
64 | /* disable debug print */ | ||
65 | //#define NO_DEBUG | ||
66 | |||
67 | /* disable print */ | ||
68 | //#define NO_PRINT | ||
69 | |||
70 | /* disable action features */ | ||
71 | //#define NO_ACTION_LAYER | ||
72 | //#define NO_ACTION_TAPPING | ||
73 | //#define NO_ACTION_ONESHOT | ||
74 | //#define NO_ACTION_MACRO | ||
75 | //#define NO_ACTION_FUNCTION | ||
76 | |||
77 | // ws2812 options | ||
78 | #define RGB_DI_PIN B7 // pin the DI on the ws2812 is hooked-up to | ||
79 | #define RGBLIGHT_ANIMATIONS // run RGB animations | ||
80 | #define RGBLED_NUM 14 // number of LEDs | ||
81 | #define RGBLIGHT_HUE_STEP 12 // units to step when in/decreasing hue | ||
82 | #define RGBLIGHT_SAT_STEP 25 // units to step when in/decresing saturation | ||
83 | #define RGBLIGHT_VAL_STEP 12 // units to step when in/decreasing value (brightness) | ||
diff --git a/keyboards/boardwalk/info.json b/keyboards/boardwalk/info.json new file mode 100644 index 000000000..63630cae8 --- /dev/null +++ b/keyboards/boardwalk/info.json | |||
@@ -0,0 +1,453 @@ | |||
1 | { | ||
2 | "keyboard_name": "Boardwalk", | ||
3 | "url": "", | ||
4 | "maintainer": "qmk", | ||
5 | "layouts": { | ||
6 | "LAYOUT_ortho_5x14": { | ||
7 | "layout": [ | ||
8 | {"x": 0, "y": 0, "w": 1.5}, | ||
9 | {"x": 1.5, "y": 0}, | ||
10 | {"x": 2.5, "y": 0}, | ||
11 | {"x": 3.5, "y": 0}, | ||
12 | {"x": 4.5, "y": 0}, | ||
13 | {"x": 5.5, "y": 0}, | ||
14 | {"x": 6.5, "y": 0}, | ||
15 | {"x": 7.5, "y": 0}, | ||
16 | {"x": 8.5, "y": 0}, | ||
17 | {"x": 9.5, "y": 0}, | ||
18 | {"x": 10.5, "y": 0}, | ||
19 | {"x": 11.5, "y": 0}, | ||
20 | {"x": 12.5, "y": 0}, | ||
21 | {"x": 13.5, "y": 0, "w": 1.5}, | ||
22 | |||
23 | {"x": 0, "y": 1, "w": 1.5}, | ||
24 | {"x": 1.5, "y": 1}, | ||
25 | {"x": 2.5, "y": 1}, | ||
26 | {"x": 3.5, "y": 1}, | ||
27 | {"x": 4.5, "y": 1}, | ||
28 | {"x": 5.5, "y": 1}, | ||
29 | {"x": 6.5, "y": 1}, | ||
30 | {"x": 7.5, "y": 1}, | ||
31 | {"x": 8.5, "y": 1}, | ||
32 | {"x": 9.5, "y": 1}, | ||
33 | {"x": 10.5, "y": 1}, | ||
34 | {"x": 11.5, "y": 1}, | ||
35 | {"x": 12.5, "y": 1}, | ||
36 | {"x": 13.5, "y": 1, "w": 1.5}, | ||
37 | |||
38 | {"x": 0, "y": 2, "w": 1.5}, | ||
39 | {"x": 1.5, "y": 2}, | ||
40 | {"x": 2.5, "y": 2}, | ||
41 | {"x": 3.5, "y": 2}, | ||
42 | {"x": 4.5, "y": 2}, | ||
43 | {"x": 5.5, "y": 2}, | ||
44 | {"x": 6.5, "y": 2}, | ||
45 | {"x": 7.5, "y": 2}, | ||
46 | {"x": 8.5, "y": 2}, | ||
47 | {"x": 9.5, "y": 2}, | ||
48 | {"x": 10.5, "y": 2}, | ||
49 | {"x": 11.5, "y": 2}, | ||
50 | {"x": 12.5, "y": 2}, | ||
51 | {"x": 13.5, "y": 2, "w": 1.5}, | ||
52 | |||
53 | {"x": 0, "y": 3, "w": 1.5}, | ||
54 | {"x": 1.5, "y": 3}, | ||
55 | {"x": 2.5, "y": 3}, | ||
56 | {"x": 3.5, "y": 3}, | ||
57 | {"x": 4.5, "y": 3}, | ||
58 | {"x": 5.5, "y": 3}, | ||
59 | {"x": 6.5, "y": 3}, | ||
60 | {"x": 7.5, "y": 3}, | ||
61 | {"x": 8.5, "y": 3}, | ||
62 | {"x": 9.5, "y": 3}, | ||
63 | {"x": 10.5, "y": 3}, | ||
64 | {"x": 11.5, "y": 3}, | ||
65 | {"x": 12.5, "y": 3}, | ||
66 | {"x": 13.5, "y": 3, "w": 1.5}, | ||
67 | |||
68 | {"x": 0, "y": 4, "w": 1.5}, | ||
69 | {"x": 1.5, "y": 4}, | ||
70 | {"x": 2.5, "y": 4}, | ||
71 | {"x": 3.5, "y": 4}, | ||
72 | {"x": 4.5, "y": 4}, | ||
73 | {"x": 5.5, "y": 4}, | ||
74 | {"x": 6.5, "y": 4}, | ||
75 | {"x": 7.5, "y": 4}, | ||
76 | {"x": 8.5, "y": 4}, | ||
77 | {"x": 9.5, "y": 4}, | ||
78 | {"x": 10.5, "y": 4}, | ||
79 | {"x": 11.5, "y": 4}, | ||
80 | {"x": 12.5, "y": 4}, | ||
81 | {"x": 13.5, "y": 4, "w": 1.5} | ||
82 | ] | ||
83 | }, | ||
84 | "LAYOUT_ortho_hhkb": { | ||
85 | "layout": [ | ||
86 | {"x": 0, "y": 0, "w": 1.5}, | ||
87 | {"x": 1.5, "y": 0}, | ||
88 | {"x": 2.5, "y": 0}, | ||
89 | {"x": 3.5, "y": 0}, | ||
90 | {"x": 4.5, "y": 0}, | ||
91 | {"x": 5.5, "y": 0}, | ||
92 | {"x": 6.5, "y": 0}, | ||
93 | {"x": 7.5, "y": 0}, | ||
94 | {"x": 8.5, "y": 0}, | ||
95 | {"x": 9.5, "y": 0}, | ||
96 | {"x": 10.5, "y": 0}, | ||
97 | {"x": 11.5, "y": 0}, | ||
98 | {"x": 12.5, "y": 0}, | ||
99 | {"x": 13.5, "y": 0, "w": 1.5}, | ||
100 | |||
101 | {"x": 0, "y": 1, "w": 1.5}, | ||
102 | {"x": 1.5, "y": 1}, | ||
103 | {"x": 2.5, "y": 1}, | ||
104 | {"x": 3.5, "y": 1}, | ||
105 | {"x": 4.5, "y": 1}, | ||
106 | {"x": 5.5, "y": 1}, | ||
107 | {"x": 6.5, "y": 1}, | ||
108 | {"x": 7.5, "y": 1}, | ||
109 | {"x": 8.5, "y": 1}, | ||
110 | {"x": 9.5, "y": 1}, | ||
111 | {"x": 10.5, "y": 1}, | ||
112 | {"x": 11.5, "y": 1}, | ||
113 | {"x": 12.5, "y": 1}, | ||
114 | {"x": 13.5, "y": 1, "w": 1.5}, | ||
115 | |||
116 | {"x": 0, "y": 2, "w": 1.5}, | ||
117 | {"x": 1.5, "y": 2}, | ||
118 | {"x": 2.5, "y": 2}, | ||
119 | {"x": 3.5, "y": 2}, | ||
120 | {"x": 4.5, "y": 2}, | ||
121 | {"x": 5.5, "y": 2}, | ||
122 | {"x": 6.5, "y": 2}, | ||
123 | {"x": 7.5, "y": 2}, | ||
124 | {"x": 8.5, "y": 2}, | ||
125 | {"x": 9.5, "y": 2}, | ||
126 | {"x": 10.5, "y": 2}, | ||
127 | {"x": 11.5, "y": 2}, | ||
128 | {"x": 12.5, "y": 2}, | ||
129 | {"x": 13.5, "y": 2, "w": 1.5}, | ||
130 | |||
131 | {"x": 0, "y": 3, "w": 1.5}, | ||
132 | {"x": 1.5, "y": 3}, | ||
133 | {"x": 2.5, "y": 3}, | ||
134 | {"x": 3.5, "y": 3}, | ||
135 | {"x": 4.5, "y": 3}, | ||
136 | {"x": 5.5, "y": 3}, | ||
137 | {"x": 6.5, "y": 3}, | ||
138 | {"x": 7.5, "y": 3}, | ||
139 | {"x": 8.5, "y": 3}, | ||
140 | {"x": 9.5, "y": 3}, | ||
141 | {"x": 10.5, "y": 3}, | ||
142 | {"x": 11.5, "y": 3}, | ||
143 | {"x": 12.5, "y": 3}, | ||
144 | {"x": 13.5, "y": 3, "w": 1.5}, | ||
145 | |||
146 | {"x": 1.5, "y": 4}, | ||
147 | {"x": 2.5, "y": 4}, | ||
148 | {"x": 3.5, "y": 4}, | ||
149 | {"x": 4.5, "y": 4}, | ||
150 | {"x": 5.5, "y": 4, "w": 2}, | ||
151 | {"x": 7.5, "y": 4, "w": 2}, | ||
152 | {"x": 9.5, "y": 4}, | ||
153 | {"x": 10.5, "y": 4}, | ||
154 | {"x": 11.5, "y": 4}, | ||
155 | {"x": 12.5, "y": 4} | ||
156 | ] | ||
157 | }, | ||
158 | "LAYOUT_ortho_7u": { | ||
159 | "layout": [ | ||
160 | {"x": 0, "y": 0, "w": 1.5}, | ||
161 | {"x": 1.5, "y": 0}, | ||
162 | {"x": 2.5, "y": 0}, | ||
163 | {"x": 3.5, "y": 0}, | ||
164 | {"x": 4.5, "y": 0}, | ||
165 | {"x": 5.5, "y": 0}, | ||
166 | {"x": 6.5, "y": 0}, | ||
167 | {"x": 7.5, "y": 0}, | ||
168 | {"x": 8.5, "y": 0}, | ||
169 | {"x": 9.5, "y": 0}, | ||
170 | {"x": 10.5, "y": 0}, | ||
171 | {"x": 11.5, "y": 0}, | ||
172 | {"x": 12.5, "y": 0}, | ||
173 | {"x": 13.5, "y": 0, "w": 1.5}, | ||
174 | |||
175 | {"x": 0, "y": 1, "w": 1.5}, | ||
176 | {"x": 1.5, "y": 1}, | ||
177 | {"x": 2.5, "y": 1}, | ||
178 | {"x": 3.5, "y": 1}, | ||
179 | {"x": 4.5, "y": 1}, | ||
180 | {"x": 5.5, "y": 1}, | ||
181 | {"x": 6.5, "y": 1}, | ||
182 | {"x": 7.5, "y": 1}, | ||
183 | {"x": 8.5, "y": 1}, | ||
184 | {"x": 9.5, "y": 1}, | ||
185 | {"x": 10.5, "y": 1}, | ||
186 | {"x": 11.5, "y": 1}, | ||
187 | {"x": 12.5, "y": 1}, | ||
188 | {"x": 13.5, "y": 1, "w": 1.5}, | ||
189 | |||
190 | {"x": 0, "y": 2, "w": 1.5}, | ||
191 | {"x": 1.5, "y": 2}, | ||
192 | {"x": 2.5, "y": 2}, | ||
193 | {"x": 3.5, "y": 2}, | ||
194 | {"x": 4.5, "y": 2}, | ||
195 | {"x": 5.5, "y": 2}, | ||
196 | {"x": 6.5, "y": 2}, | ||
197 | {"x": 7.5, "y": 2}, | ||
198 | {"x": 8.5, "y": 2}, | ||
199 | {"x": 9.5, "y": 2}, | ||
200 | {"x": 10.5, "y": 2}, | ||
201 | {"x": 11.5, "y": 2}, | ||
202 | {"x": 12.5, "y": 2}, | ||
203 | {"x": 13.5, "y": 2, "w": 1.5}, | ||
204 | |||
205 | {"x": 0, "y": 3, "w": 1.5}, | ||
206 | {"x": 1.5, "y": 3}, | ||
207 | {"x": 2.5, "y": 3}, | ||
208 | {"x": 3.5, "y": 3}, | ||
209 | {"x": 4.5, "y": 3}, | ||
210 | {"x": 5.5, "y": 3}, | ||
211 | {"x": 6.5, "y": 3}, | ||
212 | {"x": 7.5, "y": 3}, | ||
213 | {"x": 8.5, "y": 3}, | ||
214 | {"x": 9.5, "y": 3}, | ||
215 | {"x": 10.5, "y": 3}, | ||
216 | {"x": 11.5, "y": 3}, | ||
217 | {"x": 12.5, "y": 3}, | ||
218 | {"x": 13.5, "y": 3, "w": 1.5}, | ||
219 | |||
220 | {"x": 1.5, "y": 4}, | ||
221 | {"x": 2.5, "y": 4, "w": 1.5}, | ||
222 | {"x": 4, "y": 4, "w": 7}, | ||
223 | {"x": 11, "y": 4, "w": 1.5}, | ||
224 | {"x": 12.5, "y": 4} | ||
225 | ] | ||
226 | }, | ||
227 | "LAYOUT_2u_arrow": { | ||
228 | "layout": [ | ||
229 | {"x": 0, "y": 0, "w": 1.5}, | ||
230 | {"x": 1.5, "y": 0}, | ||
231 | {"x": 2.5, "y": 0}, | ||
232 | {"x": 3.5, "y": 0}, | ||
233 | {"x": 4.5, "y": 0}, | ||
234 | {"x": 5.5, "y": 0}, | ||
235 | {"x": 6.5, "y": 0}, | ||
236 | {"x": 7.5, "y": 0}, | ||
237 | {"x": 8.5, "y": 0}, | ||
238 | {"x": 9.5, "y": 0}, | ||
239 | {"x": 10.5, "y": 0}, | ||
240 | {"x": 11.5, "y": 0}, | ||
241 | {"x": 12.5, "y": 0}, | ||
242 | {"x": 13.5, "y": 0, "w": 1.5}, | ||
243 | |||
244 | {"x": 0, "y": 1, "w": 1.5}, | ||
245 | {"x": 1.5, "y": 1}, | ||
246 | {"x": 2.5, "y": 1}, | ||
247 | {"x": 3.5, "y": 1}, | ||
248 | {"x": 4.5, "y": 1}, | ||
249 | {"x": 5.5, "y": 1}, | ||
250 | {"x": 6.5, "y": 1}, | ||
251 | {"x": 7.5, "y": 1}, | ||
252 | {"x": 8.5, "y": 1}, | ||
253 | {"x": 9.5, "y": 1}, | ||
254 | {"x": 10.5, "y": 1}, | ||
255 | {"x": 11.5, "y": 1}, | ||
256 | {"x": 12.5, "y": 1}, | ||
257 | {"x": 13.5, "y": 1, "w": 1.5}, | ||
258 | |||
259 | {"x": 0, "y": 2, "w": 1.5}, | ||
260 | {"x": 1.5, "y": 2}, | ||
261 | {"x": 2.5, "y": 2}, | ||
262 | {"x": 3.5, "y": 2}, | ||
263 | {"x": 4.5, "y": 2}, | ||
264 | {"x": 5.5, "y": 2}, | ||
265 | {"x": 6.5, "y": 2}, | ||
266 | {"x": 7.5, "y": 2}, | ||
267 | {"x": 8.5, "y": 2}, | ||
268 | {"x": 9.5, "y": 2}, | ||
269 | {"x": 10.5, "y": 2}, | ||
270 | {"x": 11.5, "y": 2}, | ||
271 | {"x": 12.5, "y": 2, "w": 1.5}, | ||
272 | {"x": 14, "y": 2}, | ||
273 | |||
274 | {"x": 0, "y": 3, "w": 1.5}, | ||
275 | {"x": 1.5, "y": 3}, | ||
276 | {"x": 2.5, "y": 3}, | ||
277 | {"x": 3.5, "y": 3}, | ||
278 | {"x": 4.5, "y": 3}, | ||
279 | {"x": 5.5, "y": 3}, | ||
280 | {"x": 6.5, "y": 3}, | ||
281 | {"x": 7.5, "y": 3}, | ||
282 | {"x": 8.5, "y": 3}, | ||
283 | {"x": 9.5, "y": 3}, | ||
284 | {"x": 10.5, "y": 3}, | ||
285 | {"x": 11.5, "y": 3, "w": 1.5}, | ||
286 | {"x": 13, "y": 3}, | ||
287 | {"x": 14, "y": 3}, | ||
288 | |||
289 | {"x": 0, "y": 4, "w": 1.25}, | ||
290 | {"x": 1.25, "y": 4, "w": 1.25}, | ||
291 | {"x": 2.5, "y": 4}, | ||
292 | {"x": 3.5, "y": 4}, | ||
293 | {"x": 4.5, "y": 4, "w": 2}, | ||
294 | {"x": 6.5, "y": 4, "w": 2}, | ||
295 | {"x": 8.5, "y": 4}, | ||
296 | {"x": 9.5, "y": 4, "w": 1.25}, | ||
297 | {"x": 10.75, "y": 4, "w": 1.25}, | ||
298 | {"x": 12, "y": 4}, | ||
299 | {"x": 13, "y": 4}, | ||
300 | {"x": 14, "y": 4} | ||
301 | ] | ||
302 | }, | ||
303 | "LAYOUT_625u_arrow": { | ||
304 | "layout": [ | ||
305 | {"x": 0, "y": 0, "w": 1.5}, | ||
306 | {"x": 1.5, "y": 0}, | ||
307 | {"x": 2.5, "y": 0}, | ||
308 | {"x": 3.5, "y": 0}, | ||
309 | {"x": 4.5, "y": 0}, | ||
310 | {"x": 5.5, "y": 0}, | ||
311 | {"x": 6.5, "y": 0}, | ||
312 | {"x": 7.5, "y": 0}, | ||
313 | {"x": 8.5, "y": 0}, | ||
314 | {"x": 9.5, "y": 0}, | ||
315 | {"x": 10.5, "y": 0}, | ||
316 | {"x": 11.5, "y": 0}, | ||
317 | {"x": 12.5, "y": 0}, | ||
318 | {"x": 13.5, "y": 0, "w": 1.5}, | ||
319 | |||
320 | {"x": 0, "y": 1, "w": 1.5}, | ||
321 | {"x": 1.5, "y": 1}, | ||
322 | {"x": 2.5, "y": 1}, | ||
323 | {"x": 3.5, "y": 1}, | ||
324 | {"x": 4.5, "y": 1}, | ||
325 | {"x": 5.5, "y": 1}, | ||
326 | {"x": 6.5, "y": 1}, | ||
327 | {"x": 7.5, "y": 1}, | ||
328 | {"x": 8.5, "y": 1}, | ||
329 | {"x": 9.5, "y": 1}, | ||
330 | {"x": 10.5, "y": 1}, | ||
331 | {"x": 11.5, "y": 1}, | ||
332 | {"x": 12.5, "y": 1}, | ||
333 | {"x": 13.5, "y": 1, "w": 1.5}, | ||
334 | |||
335 | {"x": 0, "y": 2, "w": 1.5}, | ||
336 | {"x": 1.5, "y": 2}, | ||
337 | {"x": 2.5, "y": 2}, | ||
338 | {"x": 3.5, "y": 2}, | ||
339 | {"x": 4.5, "y": 2}, | ||
340 | {"x": 5.5, "y": 2}, | ||
341 | {"x": 6.5, "y": 2}, | ||
342 | {"x": 7.5, "y": 2}, | ||
343 | {"x": 8.5, "y": 2}, | ||
344 | {"x": 9.5, "y": 2}, | ||
345 | {"x": 10.5, "y": 2}, | ||
346 | {"x": 11.5, "y": 2}, | ||
347 | {"x": 12.5, "y": 2, "w": 1.5}, | ||
348 | {"x": 14, "y": 2}, | ||
349 | |||
350 | {"x": 0, "y": 3, "w": 1.5}, | ||
351 | {"x": 1.5, "y": 3}, | ||
352 | {"x": 2.5, "y": 3}, | ||
353 | {"x": 3.5, "y": 3}, | ||
354 | {"x": 4.5, "y": 3}, | ||
355 | {"x": 5.5, "y": 3}, | ||
356 | {"x": 6.5, "y": 3}, | ||
357 | {"x": 7.5, "y": 3}, | ||
358 | {"x": 8.5, "y": 3}, | ||
359 | {"x": 9.5, "y": 3}, | ||
360 | {"x": 10.5, "y": 3}, | ||
361 | {"x": 11.5, "y": 3, "w": 1.5}, | ||
362 | {"x": 13, "y": 3}, | ||
363 | {"x": 14, "y": 3}, | ||
364 | |||
365 | {"x": 0, "y": 4, "w": 1.25}, | ||
366 | {"x": 1.25, "y": 4, "w": 1.25}, | ||
367 | {"x": 2.5, "y": 4}, | ||
368 | {"x": 3.5, "y": 4, "w": 6.25}, | ||
369 | {"x": 9.75, "y": 4}, | ||
370 | {"x": 10.75, "y": 4, "w": 1.25}, | ||
371 | {"x": 12, "y": 4}, | ||
372 | {"x": 13, "y": 4}, | ||
373 | {"x": 14, "y": 4} | ||
374 | ] | ||
375 | }, | ||
376 | "LAYOUT_ortho_2x2u": { | ||
377 | "layout": [ | ||
378 | {"x": 0, "y": 0, "w": 1.5}, | ||
379 | {"x": 1.5, "y": 0}, | ||
380 | {"x": 2.5, "y": 0}, | ||
381 | {"x": 3.5, "y": 0}, | ||
382 | {"x": 4.5, "y": 0}, | ||
383 | {"x": 5.5, "y": 0}, | ||
384 | {"x": 6.5, "y": 0}, | ||
385 | {"x": 7.5, "y": 0}, | ||
386 | {"x": 8.5, "y": 0}, | ||
387 | {"x": 9.5, "y": 0}, | ||
388 | {"x": 10.5, "y": 0}, | ||
389 | {"x": 11.5, "y": 0}, | ||
390 | {"x": 12.5, "y": 0}, | ||
391 | {"x": 13.5, "y": 0, "w": 1.5}, | ||
392 | |||
393 | {"x": 0, "y": 1, "w": 1.5}, | ||
394 | {"x": 1.5, "y": 1}, | ||
395 | {"x": 2.5, "y": 1}, | ||
396 | {"x": 3.5, "y": 1}, | ||
397 | {"x": 4.5, "y": 1}, | ||
398 | {"x": 5.5, "y": 1}, | ||
399 | {"x": 6.5, "y": 1}, | ||
400 | {"x": 7.5, "y": 1}, | ||
401 | {"x": 8.5, "y": 1}, | ||
402 | {"x": 9.5, "y": 1}, | ||
403 | {"x": 10.5, "y": 1}, | ||
404 | {"x": 11.5, "y": 1}, | ||
405 | {"x": 12.5, "y": 1}, | ||
406 | {"x": 13.5, "y": 1, "w": 1.5}, | ||
407 | |||
408 | {"x": 0, "y": 2, "w": 1.5}, | ||
409 | {"x": 1.5, "y": 2}, | ||
410 | {"x": 2.5, "y": 2}, | ||
411 | {"x": 3.5, "y": 2}, | ||
412 | {"x": 4.5, "y": 2}, | ||
413 | {"x": 5.5, "y": 2}, | ||
414 | {"x": 6.5, "y": 2}, | ||
415 | {"x": 7.5, "y": 2}, | ||
416 | {"x": 8.5, "y": 2}, | ||
417 | {"x": 9.5, "y": 2}, | ||
418 | {"x": 10.5, "y": 2}, | ||
419 | {"x": 11.5, "y": 2}, | ||
420 | {"x": 12.5, "y": 2}, | ||
421 | {"x": 13.5, "y": 2, "w": 1.5}, | ||
422 | |||
423 | {"x": 0, "y": 3, "w": 1.5}, | ||
424 | {"x": 1.5, "y": 3}, | ||
425 | {"x": 2.5, "y": 3}, | ||
426 | {"x": 3.5, "y": 3}, | ||
427 | {"x": 4.5, "y": 3}, | ||
428 | {"x": 5.5, "y": 3}, | ||
429 | {"x": 6.5, "y": 3}, | ||
430 | {"x": 7.5, "y": 3}, | ||
431 | {"x": 8.5, "y": 3}, | ||
432 | {"x": 9.5, "y": 3}, | ||
433 | {"x": 10.5, "y": 3}, | ||
434 | {"x": 11.5, "y": 3}, | ||
435 | {"x": 12.5, "y": 3}, | ||
436 | {"x": 13.5, "y": 3, "w": 1.5}, | ||
437 | |||
438 | {"x": 0, "y": 4, "w": 1.5}, | ||
439 | {"x": 1.5, "y": 4}, | ||
440 | {"x": 2.5, "y": 4}, | ||
441 | {"x": 3.5, "y": 4}, | ||
442 | {"x": 4.5, "y": 4}, | ||
443 | {"x": 5.5, "y": 4, "w": 2}, | ||
444 | {"x": 7.5, "y": 4, "w": 2}, | ||
445 | {"x": 9.5, "y": 4}, | ||
446 | {"x": 10.5, "y": 4}, | ||
447 | {"x": 11.5, "y": 4}, | ||
448 | {"x": 12.5, "y": 4}, | ||
449 | {"x": 13.5, "y": 4, "w": 1.5} | ||
450 | ] | ||
451 | } | ||
452 | } | ||
453 | } | ||
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 | ||
diff --git a/keyboards/boardwalk/readme.md b/keyboards/boardwalk/readme.md new file mode 100644 index 000000000..e66c0a07f --- /dev/null +++ b/keyboards/boardwalk/readme.md | |||
@@ -0,0 +1,16 @@ | |||
1 | # Boardwalk | ||
2 | |||
3 |  | ||
4 | |||
5 | The Boardwalk is a 60% ortholinear keyboard, designed around Ergodox keycap sets and to fit into many standard 60% cases. The project was inspired by OLKB’s Atomic keyboard, which used larger 2u mods, but u/shensmobile | ||
6 | decided to switch to 1.5u keys so that Ergodox sets would provide excellent compatibility. The rest of the board can be covered using standard key sizes from 60% sets. | ||
7 | |||
8 | * Keyboard Maintainer: QMK Community | ||
9 | * Hardware Supported: Boardwalk Ortholinear PCB | ||
10 | * Hardware Availability: [panc.co](https://www.panc.co/boardwalk-group-buy.html) | ||
11 | |||
12 | Make example for this keyboard (after setting up your build environment): | ||
13 | |||
14 | make boardwalk:default | ||
15 | |||
16 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/boardwalk/rules.mk b/keyboards/boardwalk/rules.mk new file mode 100644 index 000000000..16489ed2c --- /dev/null +++ b/keyboards/boardwalk/rules.mk | |||
@@ -0,0 +1,21 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = atmel-dfu | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
11 | MOUSEKEY_ENABLE = no # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = no # Console for debug | ||
14 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
15 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | AUDIO_ENABLE = no # Audio output | ||
18 | UNICODE_ENABLE = yes # Unicode | ||
19 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | ||
20 | |||
21 | LAYOUTS = ortho_5x14 | ||