diff options
Diffstat (limited to 'keyboards/bear_face')
23 files changed, 1065 insertions, 0 deletions
diff --git a/keyboards/bear_face/.noci b/keyboards/bear_face/.noci new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/bear_face/.noci | |||
diff --git a/keyboards/bear_face/bear_face.c b/keyboards/bear_face/bear_face.c new file mode 100644 index 000000000..30aa5140d --- /dev/null +++ b/keyboards/bear_face/bear_face.c | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include "bear_face.h" | ||
diff --git a/keyboards/bear_face/bear_face.h b/keyboards/bear_face/bear_face.h new file mode 100644 index 000000000..c63b2bd01 --- /dev/null +++ b/keyboards/bear_face/bear_face.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "quantum.h" | ||
21 | |||
22 | #if defined(KEYBOARD_bear_face_v1) | ||
23 | # include "v1.h" | ||
24 | #elif defined(KEYBOARD_bear_face_v2) | ||
25 | # include "v2.h" | ||
26 | #endif | ||
diff --git a/keyboards/bear_face/config.h b/keyboards/bear_face/config.h new file mode 100644 index 000000000..9b389f127 --- /dev/null +++ b/keyboards/bear_face/config.h | |||
@@ -0,0 +1,99 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0xFEED | ||
24 | #define PRODUCT_ID 0x09f5 | ||
25 | #define MANUFACTURER chemicalwill | ||
26 | #define PRODUCT bear_face | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 6 | ||
30 | #define MATRIX_COLS 15 | ||
31 | |||
32 | /* bear_face matrix pinout */ | ||
33 | #define MATRIX_ROW_PINS { F5, F6, F4, F1, B0, B6 } | ||
34 | #define MATRIX_COL_PINS { B5, C7, C6, F0, E6, B7, D0, D1, D2, D3, D5, D4, D6, D7, B4 } | ||
35 | #define UNUSED_PINS | ||
36 | |||
37 | /* COL2ROW or ROW2COL */ | ||
38 | #define DIODE_DIRECTION COL2ROW | ||
39 | |||
40 | #define BACKLIGHT_PIN F7 | ||
41 | |||
42 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
43 | #define DEBOUNCE 6 | ||
44 | |||
45 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
46 | #define LOCKING_SUPPORT_ENABLE | ||
47 | /* Locking resynchronize hack */ | ||
48 | #define LOCKING_RESYNC_ENABLE | ||
49 | |||
50 | /* | ||
51 | * Force NKRO | ||
52 | * | ||
53 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
54 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
55 | * makefile for this to work.) | ||
56 | * | ||
57 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
58 | * until the next keyboard reset. | ||
59 | * | ||
60 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
61 | * fully operational during normal computer usage. | ||
62 | * | ||
63 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
64 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
65 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
66 | * power-up. | ||
67 | * | ||
68 | */ | ||
69 | #define FORCE_NKRO | ||
70 | |||
71 | /* | ||
72 | * Magic Key Options | ||
73 | * | ||
74 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
75 | * the keyboard. They are best used in combination with the HID Listen program, | ||
76 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
77 | * | ||
78 | * The options below allow the magic key functionality to be changed. This is | ||
79 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
80 | * | ||
81 | */ | ||
82 | |||
83 | /* | ||
84 | * Feature disable options | ||
85 | * These options are also useful to firmware size reduction. | ||
86 | */ | ||
87 | |||
88 | /* disable debug print */ | ||
89 | //#define NO_DEBUG | ||
90 | |||
91 | /* disable print */ | ||
92 | //#define NO_PRINT | ||
93 | |||
94 | /* disable action features */ | ||
95 | //#define NO_ACTION_LAYER | ||
96 | //#define NO_ACTION_TAPPING | ||
97 | //#define NO_ACTION_ONESHOT | ||
98 | //#define NO_ACTION_MACRO | ||
99 | //#define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/bear_face/readme.md b/keyboards/bear_face/readme.md new file mode 100644 index 000000000..212418e37 --- /dev/null +++ b/keyboards/bear_face/readme.md | |||
@@ -0,0 +1,16 @@ | |||
1 | # bear_face | ||
2 | |||
3 |  | ||
4 | |||
5 | QMK-compatible replacement PCB for the Vortex Race 3 designed by [chemicalwill](https://github.com/chemicalwill) | ||
6 | |||
7 | * Keyboard Maintainer: [chemicalwill](https://github.com/chemicalwill) | ||
8 | * Hardware Supported: bear_face v1, v2; atmega32u4 | ||
9 | * Hardware Availability: [currently by request](https://www.reddit.com/message/compose?to=chemicalwill&subject=bear_face%20v2) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make bear_face/v1:default | ||
14 | make bear_face/v2: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/bear_face/rules.mk b/keyboards/bear_face/rules.mk new file mode 100644 index 000000000..f198cf7cc --- /dev/null +++ b/keyboards/bear_face/rules.mk | |||
@@ -0,0 +1,20 @@ | |||
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 = no # 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 = no # Commands for debug and configuration | ||
15 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
18 | AUDIO_ENABLE = no # Audio output | ||
19 | |||
20 | DEFAULT_FOLDER = bear_face/v1 | ||
diff --git a/keyboards/bear_face/v1/.noci b/keyboards/bear_face/v1/.noci new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/bear_face/v1/.noci | |||
diff --git a/keyboards/bear_face/v1/config.h b/keyboards/bear_face/v1/config.h new file mode 100644 index 000000000..cf1de932c --- /dev/null +++ b/keyboards/bear_face/v1/config.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | /* USB Device descriptor parameter */ | ||
19 | #define DEVICE_VER 0x0100 | ||
diff --git a/keyboards/bear_face/v1/info.json b/keyboards/bear_face/v1/info.json new file mode 100644 index 000000000..0435c5c22 --- /dev/null +++ b/keyboards/bear_face/v1/info.json | |||
@@ -0,0 +1,99 @@ | |||
1 | { | ||
2 | "keyboard_name": "bear_face", | ||
3 | "url": "https://github.com/chemicalwill/bear_face_pcb", | ||
4 | "maintainer": "chemicalwill", | ||
5 | "layouts": { | ||
6 | "LAYOUT_83_ansi": { | ||
7 | "layout": [ | ||
8 | {"label":"Esc", "x":0, "y":0, "w":1.5}, | ||
9 | {"label":"F1", "x":1.5, "y":0}, | ||
10 | {"label":"F2", "x":2.5, "y":0}, | ||
11 | {"label":"F3", "x":3.5, "y":0}, | ||
12 | {"label":"F4", "x":4.5, "y":0}, | ||
13 | {"label":"F5", "x":5.5, "y":0}, | ||
14 | {"label":"F6", "x":6.5, "y":0}, | ||
15 | {"label":"F7", "x":7.5, "y":0}, | ||
16 | {"label":"F8", "x":8.5, "y":0}, | ||
17 | {"label":"F9", "x":9.5, "y":0}, | ||
18 | {"label":"F10", "x":10.5, "y":0}, | ||
19 | {"label":"F11", "x":11.5, "y":0}, | ||
20 | {"label":"F12", "x":12.5, "y":0}, | ||
21 | {"label":"Pn", "x":13.5, "y":0}, | ||
22 | {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
23 | |||
24 | {"label":"~", "x":0, "y":1}, | ||
25 | {"label":"!", "x":1, "y":1}, | ||
26 | {"label":"@", "x":2, "y":1}, | ||
27 | {"label":"#", "x":3, "y":1}, | ||
28 | {"label":"$", "x":4, "y":1}, | ||
29 | {"label":"%", "x":5, "y":1}, | ||
30 | {"label":"^", "x":6, "y":1}, | ||
31 | {"label":"&", "x":7, "y":1}, | ||
32 | {"label":"*", "x":8, "y":1}, | ||
33 | {"label":"(", "x":9, "y":1}, | ||
34 | {"label":")", "x":10, "y":1}, | ||
35 | {"label":"_", "x":11, "y":1}, | ||
36 | {"label":"+", "x":12, "y":1}, | ||
37 | {"label":"Backspace", "x":13, "y":1, "w":2}, | ||
38 | {"label":"Home", "x":15, "y":1}, | ||
39 | |||
40 | {"label":"Tab", "x":0, "y":2, "w":1.5}, | ||
41 | {"label":"Q", "x":1.5, "y":2}, | ||
42 | {"label":"W", "x":2.5, "y":2}, | ||
43 | {"label":"E", "x":3.5, "y":2}, | ||
44 | {"label":"R", "x":4.5, "y":2}, | ||
45 | {"label":"T", "x":5.5, "y":2}, | ||
46 | {"label":"Y", "x":6.5, "y":2}, | ||
47 | {"label":"U", "x":7.5, "y":2}, | ||
48 | {"label":"I", "x":8.5, "y":2}, | ||
49 | {"label":"O", "x":9.5, "y":2}, | ||
50 | {"label":"P", "x":10.5, "y":2}, | ||
51 | {"label":"{", "x":11.5, "y":2}, | ||
52 | {"label":"}", "x":12.5, "y":2}, | ||
53 | {"label":"|", "x":13.5, "y":2, "w":1.5}, | ||
54 | {"label":"Pg Up", "x":15, "y":2}, | ||
55 | |||
56 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, | ||
57 | {"label":"A", "x":1.75, "y":3}, | ||
58 | {"label":"S", "x":2.75, "y":3}, | ||
59 | {"label":"D", "x":3.75, "y":3}, | ||
60 | {"label":"F", "x":4.75, "y":3}, | ||
61 | {"label":"G", "x":5.75, "y":3}, | ||
62 | {"label":"H", "x":6.75, "y":3}, | ||
63 | {"label":"J", "x":7.75, "y":3}, | ||
64 | {"label":"K", "x":8.75, "y":3}, | ||
65 | {"label":"L", "x":9.75, "y":3}, | ||
66 | {"label":":", "x":10.75, "y":3}, | ||
67 | {"label":"\"", "x":11.75, "y":3}, | ||
68 | {"label":"Enter", "x":12.75, "y":3, "w":2.25}, | ||
69 | {"label":"Pg Dn", "x":15, "y":3}, | ||
70 | |||
71 | {"label":"Shift", "x":0, "y":4, "w":2.25}, | ||
72 | {"label":"Z", "x":2.25, "y":4}, | ||
73 | {"label":"X", "x":3.25, "y":4}, | ||
74 | {"label":"C", "x":4.25, "y":4}, | ||
75 | {"label":"V", "x":5.25, "y":4}, | ||
76 | {"label":"B", "x":6.25, "y":4}, | ||
77 | {"label":"N", "x":7.25, "y":4}, | ||
78 | {"label":"M", "x":8.25, "y":4}, | ||
79 | {"label":"<", "x":9.25, "y":4}, | ||
80 | {"label":">", "x":10.25, "y":4}, | ||
81 | {"label":"?", "x":11.25, "y":4}, | ||
82 | {"label":"Shift", "x":12.25, "y":4, "w":1.75}, | ||
83 | {"label":"Up", "x":14, "y":4}, | ||
84 | {"label":"End", "x":15, "y":4}, | ||
85 | |||
86 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, | ||
87 | {"label":"Win", "x":1.25, "y":5, "w":1.25}, | ||
88 | {"label":"Alt", "x":2.5, "y":5, "w":1.25}, | ||
89 | {"x":3.75, "y":5, "w":6.25}, | ||
90 | {"label":"Alt", "x":10, "y":5}, | ||
91 | {"label":"Fn", "x":11, "y":5}, | ||
92 | {"label":"Ctrl", "x":12, "y":5}, | ||
93 | {"label":"Left", "x":13, "y":5}, | ||
94 | {"label":"Down", "x":14, "y":5}, | ||
95 | {"label":"Right", "x":15, "y":5} | ||
96 | ] | ||
97 | } | ||
98 | } | ||
99 | } | ||
diff --git a/keyboards/bear_face/v1/keymaps/default/keymap.c b/keyboards/bear_face/v1/keymaps/default/keymap.c new file mode 100644 index 000000000..527b04192 --- /dev/null +++ b/keyboards/bear_face/v1/keymaps/default/keymap.c | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include QMK_KEYBOARD_H | ||
19 | |||
20 | enum layers { | ||
21 | _QWER, | ||
22 | _COLE, | ||
23 | _DVOR, | ||
24 | _FN1, | ||
25 | }; | ||
26 | |||
27 | #define FN1_CAPS LT(_FN1, KC_CAPS) | ||
28 | |||
29 | //custom keycode enums | ||
30 | enum custom_keycodes { | ||
31 | BASE_QWER = SAFE_RANGE, | ||
32 | BASE_COLE, | ||
33 | BASE_DVOR | ||
34 | }; | ||
35 | |||
36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
37 | [_QWER] = LAYOUT_83_ansi( | ||
38 | KC_ESC, 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_NO, KC_DEL, | ||
39 | KC_GRV, 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, KC_HOME, | ||
40 | 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, KC_PGUP, | ||
41 | FN1_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_PGDN, | ||
42 | 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_END, | ||
43 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
44 | ), | ||
45 | |||
46 | [_COLE] = LAYOUT_83_ansi( | ||
47 | KC_ESC, 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_NO, KC_DEL, | ||
48 | KC_GRV, 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, KC_HOME, | ||
49 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP, | ||
50 | KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, KC_ENT, KC_PGDN, | ||
51 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, | ||
52 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
53 | ), | ||
54 | |||
55 | [_DVOR] = LAYOUT_83_ansi( | ||
56 | KC_ESC, 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_NO, KC_DEL, | ||
57 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC, KC_RBRC, KC_BSPC, KC_HOME, | ||
58 | KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, KC_BSLS, KC_PGUP, | ||
59 | FN1_CAPS, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_ENT, KC_PGDN, | ||
60 | KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT, KC_UP, KC_END, | ||
61 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
62 | ), | ||
63 | |||
64 | [_FN1] = LAYOUT_83_ansi( | ||
65 | _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, KC_INS, | ||
66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_CALC, BASE_QWER, | ||
67 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, RESET, _______, _______, _______, _______, BASE_COLE, | ||
68 | _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, BASE_DVOR, | ||
69 | _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, KC_APP, _______, _______, _______, | ||
70 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
71 | ), | ||
72 | |||
73 | /* | ||
74 | [_BLANK] = LAYOUT_83_ansi( | ||
75 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
76 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
77 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
78 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
79 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
80 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
81 | ), | ||
82 | */ | ||
83 | }; | ||
84 | |||
85 | //macros to allow the user to set whatever default layer they want, even after reboot | ||
86 | |||
87 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
88 | switch (keycode) { | ||
89 | case BASE_QWER: | ||
90 | if (record->event.pressed) { | ||
91 | // when keycode BASE_QWER is pressed | ||
92 | set_single_persistent_default_layer(_QWER); | ||
93 | } else { | ||
94 | // when keycode BASE_QWER is released | ||
95 | } | ||
96 | break; | ||
97 | |||
98 | case BASE_COLE: | ||
99 | if (record->event.pressed) { | ||
100 | // when keycode BASE_COLE is pressed | ||
101 | set_single_persistent_default_layer(_COLE); | ||
102 | } else { | ||
103 | // when keycode BASE_COLE is released | ||
104 | } | ||
105 | break; | ||
106 | |||
107 | case BASE_DVOR: | ||
108 | if (record->event.pressed) { | ||
109 | // when keycode BASE_DVOR is pressed | ||
110 | set_single_persistent_default_layer(_DVOR); | ||
111 | } else { | ||
112 | // when keycode BASE_DVOR is released | ||
113 | } | ||
114 | break; | ||
115 | } | ||
116 | return true; | ||
117 | }; | ||
diff --git a/keyboards/bear_face/v1/keymaps/default/readme.md b/keyboards/bear_face/v1/keymaps/default/readme.md new file mode 100644 index 000000000..5f9e635df --- /dev/null +++ b/keyboards/bear_face/v1/keymaps/default/readme.md | |||
@@ -0,0 +1,15 @@ | |||
1 | # default bear_face layout | ||
2 | |||
3 | This layout replaces the stock layout on the Vortex Race 3. | ||
4 | |||
5 | - Caps Lock indicator LED is enabled by default | ||
6 | - Layer Tap on Caps Lock (tap for Caps Lock, hold for _FN1) | ||
7 | - FORCE_NKRO enabled by default | ||
8 | |||
9 | - Pn key is set to 'KC_NO' by default | ||
10 | * Might be a good place for a macro, or to put your PC to sleep, etc. | ||
11 | |||
12 | - A combined function layer that mimics the sublegends on the stock caps (regardless of layout) | ||
13 | * 'Reset' will put the keyboard into DFU mode | ||
14 | * 'APP' sends 'KC_APP' | ||
15 | * Base layer toggles for QWERTY, COLEMAK, and DVORAK layouts (will persist after reboot) | ||
diff --git a/keyboards/bear_face/v1/rules.mk b/keyboards/bear_face/v1/rules.mk new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/bear_face/v1/rules.mk | |||
diff --git a/keyboards/bear_face/v1/v1.c b/keyboards/bear_face/v1/v1.c new file mode 100644 index 000000000..443b3016d --- /dev/null +++ b/keyboards/bear_face/v1/v1.c | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include "bear_face.h" | ||
19 | |||
20 | void keyboard_pre_init_kb(void) { | ||
21 | //Sets LED pin as output | ||
22 | setPinOutput(F7); | ||
23 | |||
24 | keyboard_pre_init_user(); | ||
25 | } | ||
26 | |||
27 | bool led_update_kb(led_t led_state) { | ||
28 | // Caps Lock LED indicator toggling code here | ||
29 | bool res = led_update_user(led_state); | ||
30 | if(res) { | ||
31 | writePin(F7, led_state.caps_lock); | ||
32 | } | ||
33 | return res; | ||
34 | } | ||
diff --git a/keyboards/bear_face/v1/v1.h b/keyboards/bear_face/v1/v1.h new file mode 100644 index 000000000..2337a4f73 --- /dev/null +++ b/keyboards/bear_face/v1/v1.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "quantum.h" | ||
21 | |||
22 | #define LAYOUT_83_ansi( \ | ||
23 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, \ | ||
24 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, \ | ||
25 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, \ | ||
26 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K313, K314, \ | ||
27 | K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K412, K413, K414, \ | ||
28 | K500, K501, K502, K505, K509, K510, K511, K512, K513, K514 \ | ||
29 | ) { \ | ||
30 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \ | ||
31 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \ | ||
32 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214 }, \ | ||
33 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, KC_NO, K313, K314 }, \ | ||
34 | { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, KC_NO, K412, K413, K414 }, \ | ||
35 | { K500, K501, K502, KC_NO, KC_NO, K505, KC_NO, KC_NO, KC_NO, K509, K510, K511, K512, K513, K514 } \ | ||
36 | } | ||
diff --git a/keyboards/bear_face/v2/config.h b/keyboards/bear_face/v2/config.h new file mode 100644 index 000000000..6a7c8c6fb --- /dev/null +++ b/keyboards/bear_face/v2/config.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | /* USB Device descriptor parameter */ | ||
19 | #define DEVICE_VER 0x0200 | ||
diff --git a/keyboards/bear_face/v2/info.json b/keyboards/bear_face/v2/info.json new file mode 100644 index 000000000..6d12f04d4 --- /dev/null +++ b/keyboards/bear_face/v2/info.json | |||
@@ -0,0 +1,193 @@ | |||
1 | { | ||
2 | "keyboard_name": "bear_face", | ||
3 | "url": "https://github.com/chemicalwill/bear_face_pcb", | ||
4 | "maintainer": "chemicalwill", | ||
5 | "layouts": { | ||
6 | "LAYOUT_83_ansi": { | ||
7 | "layout": [ | ||
8 | {"label":"Esc", "x":0, "y":0, "w":1.5}, | ||
9 | {"label":"F1", "x":1.5, "y":0}, | ||
10 | {"label":"F2", "x":2.5, "y":0}, | ||
11 | {"label":"F3", "x":3.5, "y":0}, | ||
12 | {"label":"F4", "x":4.5, "y":0}, | ||
13 | {"label":"F5", "x":5.5, "y":0}, | ||
14 | {"label":"F6", "x":6.5, "y":0}, | ||
15 | {"label":"F7", "x":7.5, "y":0}, | ||
16 | {"label":"F8", "x":8.5, "y":0}, | ||
17 | {"label":"F9", "x":9.5, "y":0}, | ||
18 | {"label":"F10", "x":10.5, "y":0}, | ||
19 | {"label":"F11", "x":11.5, "y":0}, | ||
20 | {"label":"F12", "x":12.5, "y":0}, | ||
21 | {"label":"Pn", "x":13.5, "y":0}, | ||
22 | {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
23 | |||
24 | {"label":"~", "x":0, "y":1}, | ||
25 | {"label":"!", "x":1, "y":1}, | ||
26 | {"label":"@", "x":2, "y":1}, | ||
27 | {"label":"#", "x":3, "y":1}, | ||
28 | {"label":"$", "x":4, "y":1}, | ||
29 | {"label":"%", "x":5, "y":1}, | ||
30 | {"label":"^", "x":6, "y":1}, | ||
31 | {"label":"&", "x":7, "y":1}, | ||
32 | {"label":"*", "x":8, "y":1}, | ||
33 | {"label":"(", "x":9, "y":1}, | ||
34 | {"label":")", "x":10, "y":1}, | ||
35 | {"label":"_", "x":11, "y":1}, | ||
36 | {"label":"+", "x":12, "y":1}, | ||
37 | {"label":"Backspace", "x":13, "y":1, "w":2}, | ||
38 | {"label":"Home", "x":15, "y":1}, | ||
39 | |||
40 | {"label":"Tab", "x":0, "y":2, "w":1.5}, | ||
41 | {"label":"Q", "x":1.5, "y":2}, | ||
42 | {"label":"W", "x":2.5, "y":2}, | ||
43 | {"label":"E", "x":3.5, "y":2}, | ||
44 | {"label":"R", "x":4.5, "y":2}, | ||
45 | {"label":"T", "x":5.5, "y":2}, | ||
46 | {"label":"Y", "x":6.5, "y":2}, | ||
47 | {"label":"U", "x":7.5, "y":2}, | ||
48 | {"label":"I", "x":8.5, "y":2}, | ||
49 | {"label":"O", "x":9.5, "y":2}, | ||
50 | {"label":"P", "x":10.5, "y":2}, | ||
51 | {"label":"{", "x":11.5, "y":2}, | ||
52 | {"label":"}", "x":12.5, "y":2}, | ||
53 | {"label":"|", "x":13.5, "y":2, "w":1.5}, | ||
54 | {"label":"Pg Up", "x":15, "y":2}, | ||
55 | |||
56 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, | ||
57 | {"label":"A", "x":1.75, "y":3}, | ||
58 | {"label":"S", "x":2.75, "y":3}, | ||
59 | {"label":"D", "x":3.75, "y":3}, | ||
60 | {"label":"F", "x":4.75, "y":3}, | ||
61 | {"label":"G", "x":5.75, "y":3}, | ||
62 | {"label":"H", "x":6.75, "y":3}, | ||
63 | {"label":"J", "x":7.75, "y":3}, | ||
64 | {"label":"K", "x":8.75, "y":3}, | ||
65 | {"label":"L", "x":9.75, "y":3}, | ||
66 | {"label":":", "x":10.75, "y":3}, | ||
67 | {"label":"\"", "x":11.75, "y":3}, | ||
68 | {"label":"Enter", "x":12.75, "y":3, "w":2.25}, | ||
69 | {"label":"Pg Dn", "x":15, "y":3}, | ||
70 | |||
71 | {"label":"Shift", "x":0, "y":4, "w":2.25}, | ||
72 | {"label":"Z", "x":2.25, "y":4}, | ||
73 | {"label":"X", "x":3.25, "y":4}, | ||
74 | {"label":"C", "x":4.25, "y":4}, | ||
75 | {"label":"V", "x":5.25, "y":4}, | ||
76 | {"label":"B", "x":6.25, "y":4}, | ||
77 | {"label":"N", "x":7.25, "y":4}, | ||
78 | {"label":"M", "x":8.25, "y":4}, | ||
79 | {"label":"<", "x":9.25, "y":4}, | ||
80 | {"label":">", "x":10.25, "y":4}, | ||
81 | {"label":"?", "x":11.25, "y":4}, | ||
82 | {"label":"Shift", "x":12.25, "y":4, "w":1.75}, | ||
83 | {"label":"Up", "x":14, "y":4}, | ||
84 | {"label":"End", "x":15, "y":4}, | ||
85 | |||
86 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, | ||
87 | {"label":"Win", "x":1.25, "y":5, "w":1.25}, | ||
88 | {"label":"Alt", "x":2.5, "y":5, "w":1.25}, | ||
89 | {"x":3.75, "y":5, "w":6.25}, | ||
90 | {"label":"Alt", "x":10, "y":5}, | ||
91 | {"label":"Fn", "x":11, "y":5}, | ||
92 | {"label":"Ctrl", "x":12, "y":5}, | ||
93 | {"label":"Left", "x":13, "y":5}, | ||
94 | {"label":"Down", "x":14, "y":5}, | ||
95 | {"label":"Right", "x":15, "y":5} | ||
96 | ] | ||
97 | }, | ||
98 | |||
99 | "LAYOUT_84_iso": { | ||
100 | "layout": [ | ||
101 | {"label":"Esc", "x":0, "y":0, "w":1.5}, | ||
102 | {"label":"F1", "x":1.5, "y":0}, | ||
103 | {"label":"F2", "x":2.5, "y":0}, | ||
104 | {"label":"F3", "x":3.5, "y":0}, | ||
105 | {"label":"F4", "x":4.5, "y":0}, | ||
106 | {"label":"F5", "x":5.5, "y":0}, | ||
107 | {"label":"F6", "x":6.5, "y":0}, | ||
108 | {"label":"F7", "x":7.5, "y":0}, | ||
109 | {"label":"F8", "x":8.5, "y":0}, | ||
110 | {"label":"F9", "x":9.5, "y":0}, | ||
111 | {"label":"F10", "x":10.5, "y":0}, | ||
112 | {"label":"F11", "x":11.5, "y":0}, | ||
113 | {"label":"F12", "x":12.5, "y":0}, | ||
114 | {"label":"Pn", "x":13.5, "y":0}, | ||
115 | {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
116 | |||
117 | {"label":"\u00ac", "x":0, "y":1}, | ||
118 | {"label":"!", "x":1, "y":1}, | ||
119 | {"label":"@", "x":2, "y":1}, | ||
120 | {"label":"\u00a3", "x":3, "y":1}, | ||
121 | {"label":"$", "x":4, "y":1}, | ||
122 | {"label":"%", "x":5, "y":1}, | ||
123 | {"label":"^", "x":6, "y":1}, | ||
124 | {"label":"&", "x":7, "y":1}, | ||
125 | {"label":"*", "x":8, "y":1}, | ||
126 | {"label":"(", "x":9, "y":1}, | ||
127 | {"label":")", "x":10, "y":1}, | ||
128 | {"label":"_", "x":11, "y":1}, | ||
129 | {"label":"+", "x":12, "y":1}, | ||
130 | {"label":"Backspace", "x":13, "y":1, "w":2}, | ||
131 | {"label":"Home", "x":15, "y":1}, | ||
132 | |||
133 | {"label":"Tab", "x":0, "y":2, "w":1.5}, | ||
134 | {"label":"Q", "x":1.5, "y":2}, | ||
135 | {"label":"W", "x":2.5, "y":2}, | ||
136 | {"label":"E", "x":3.5, "y":2}, | ||
137 | {"label":"R", "x":4.5, "y":2}, | ||
138 | {"label":"T", "x":5.5, "y":2}, | ||
139 | {"label":"Y", "x":6.5, "y":2}, | ||
140 | {"label":"U", "x":7.5, "y":2}, | ||
141 | {"label":"I", "x":8.5, "y":2}, | ||
142 | {"label":"O", "x":9.5, "y":2}, | ||
143 | {"label":"P", "x":10.5, "y":2}, | ||
144 | {"label":"{", "x":11.5, "y":2}, | ||
145 | {"label":"}", "x":12.5, "y":2}, | ||
146 | {"label":"Pg Up", "x":15, "y":2}, | ||
147 | |||
148 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, | ||
149 | {"label":"A", "x":1.75, "y":3}, | ||
150 | {"label":"S", "x":2.75, "y":3}, | ||
151 | {"label":"D", "x":3.75, "y":3}, | ||
152 | {"label":"F", "x":4.75, "y":3}, | ||
153 | {"label":"G", "x":5.75, "y":3}, | ||
154 | {"label":"H", "x":6.75, "y":3}, | ||
155 | {"label":"J", "x":7.75, "y":3}, | ||
156 | {"label":"K", "x":8.75, "y":3}, | ||
157 | {"label":"L", "x":9.75, "y":3}, | ||
158 | {"label":":", "x":10.75, "y":3}, | ||
159 | {"label":"\"", "x":11.75, "y":3}, | ||
160 | {"label":"~", "x":12.75, "y":3}, | ||
161 | {"label":"Enter", "x":13.75, "y":2, "w":1.25, "h":2}, | ||
162 | {"label":"Pg Dn", "x":15, "y":3}, | ||
163 | |||
164 | {"label":"Shift", "x":0, "y":4, "w":1.25}, | ||
165 | {"label":"|", "x":1.25, "y":4}, | ||
166 | {"label":"Z", "x":2.25, "y":4}, | ||
167 | {"label":"X", "x":3.25, "y":4}, | ||
168 | {"label":"C", "x":4.25, "y":4}, | ||
169 | {"label":"V", "x":5.25, "y":4}, | ||
170 | {"label":"B", "x":6.25, "y":4}, | ||
171 | {"label":"N", "x":7.25, "y":4}, | ||
172 | {"label":"M", "x":8.25, "y":4}, | ||
173 | {"label":"<", "x":9.25, "y":4}, | ||
174 | {"label":">", "x":10.25, "y":4}, | ||
175 | {"label":"?", "x":11.25, "y":4}, | ||
176 | {"label":"Shift", "x":12.25, "y":4, "w":1.75}, | ||
177 | {"label":"Up", "x":14, "y":4}, | ||
178 | {"label":"End", "x":15, "y":4}, | ||
179 | |||
180 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, | ||
181 | {"label":"Win", "x":1.25, "y":5, "w":1.25}, | ||
182 | {"label":"Alt", "x":2.5, "y":5, "w":1.25}, | ||
183 | {"x":3.75, "y":5, "w":6.25}, | ||
184 | {"label":"Alt Gr", "x":10, "y":5}, | ||
185 | {"label":"Fn", "x":11, "y":5}, | ||
186 | {"label":"Ctrl", "x":12, "y":5}, | ||
187 | {"label":"Left", "x":13, "y":5}, | ||
188 | {"label":"Down", "x":14, "y":5}, | ||
189 | {"label":"Right", "x":15, "y":5} | ||
190 | ] | ||
191 | } | ||
192 | } | ||
193 | } | ||
diff --git a/keyboards/bear_face/v2/keymaps/default/keymap.c b/keyboards/bear_face/v2/keymaps/default/keymap.c new file mode 100644 index 000000000..527b04192 --- /dev/null +++ b/keyboards/bear_face/v2/keymaps/default/keymap.c | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include QMK_KEYBOARD_H | ||
19 | |||
20 | enum layers { | ||
21 | _QWER, | ||
22 | _COLE, | ||
23 | _DVOR, | ||
24 | _FN1, | ||
25 | }; | ||
26 | |||
27 | #define FN1_CAPS LT(_FN1, KC_CAPS) | ||
28 | |||
29 | //custom keycode enums | ||
30 | enum custom_keycodes { | ||
31 | BASE_QWER = SAFE_RANGE, | ||
32 | BASE_COLE, | ||
33 | BASE_DVOR | ||
34 | }; | ||
35 | |||
36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
37 | [_QWER] = LAYOUT_83_ansi( | ||
38 | KC_ESC, 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_NO, KC_DEL, | ||
39 | KC_GRV, 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, KC_HOME, | ||
40 | 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, KC_PGUP, | ||
41 | FN1_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_PGDN, | ||
42 | 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_END, | ||
43 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
44 | ), | ||
45 | |||
46 | [_COLE] = LAYOUT_83_ansi( | ||
47 | KC_ESC, 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_NO, KC_DEL, | ||
48 | KC_GRV, 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, KC_HOME, | ||
49 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP, | ||
50 | KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, KC_ENT, KC_PGDN, | ||
51 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, | ||
52 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
53 | ), | ||
54 | |||
55 | [_DVOR] = LAYOUT_83_ansi( | ||
56 | KC_ESC, 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_NO, KC_DEL, | ||
57 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC, KC_RBRC, KC_BSPC, KC_HOME, | ||
58 | KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, KC_BSLS, KC_PGUP, | ||
59 | FN1_CAPS, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_ENT, KC_PGDN, | ||
60 | KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT, KC_UP, KC_END, | ||
61 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
62 | ), | ||
63 | |||
64 | [_FN1] = LAYOUT_83_ansi( | ||
65 | _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, KC_INS, | ||
66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_CALC, BASE_QWER, | ||
67 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, RESET, _______, _______, _______, _______, BASE_COLE, | ||
68 | _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, BASE_DVOR, | ||
69 | _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, KC_APP, _______, _______, _______, | ||
70 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
71 | ), | ||
72 | |||
73 | /* | ||
74 | [_BLANK] = LAYOUT_83_ansi( | ||
75 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
76 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
77 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
78 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
79 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
80 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
81 | ), | ||
82 | */ | ||
83 | }; | ||
84 | |||
85 | //macros to allow the user to set whatever default layer they want, even after reboot | ||
86 | |||
87 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
88 | switch (keycode) { | ||
89 | case BASE_QWER: | ||
90 | if (record->event.pressed) { | ||
91 | // when keycode BASE_QWER is pressed | ||
92 | set_single_persistent_default_layer(_QWER); | ||
93 | } else { | ||
94 | // when keycode BASE_QWER is released | ||
95 | } | ||
96 | break; | ||
97 | |||
98 | case BASE_COLE: | ||
99 | if (record->event.pressed) { | ||
100 | // when keycode BASE_COLE is pressed | ||
101 | set_single_persistent_default_layer(_COLE); | ||
102 | } else { | ||
103 | // when keycode BASE_COLE is released | ||
104 | } | ||
105 | break; | ||
106 | |||
107 | case BASE_DVOR: | ||
108 | if (record->event.pressed) { | ||
109 | // when keycode BASE_DVOR is pressed | ||
110 | set_single_persistent_default_layer(_DVOR); | ||
111 | } else { | ||
112 | // when keycode BASE_DVOR is released | ||
113 | } | ||
114 | break; | ||
115 | } | ||
116 | return true; | ||
117 | }; | ||
diff --git a/keyboards/bear_face/v2/keymaps/default/readme.md b/keyboards/bear_face/v2/keymaps/default/readme.md new file mode 100644 index 000000000..5f9e635df --- /dev/null +++ b/keyboards/bear_face/v2/keymaps/default/readme.md | |||
@@ -0,0 +1,15 @@ | |||
1 | # default bear_face layout | ||
2 | |||
3 | This layout replaces the stock layout on the Vortex Race 3. | ||
4 | |||
5 | - Caps Lock indicator LED is enabled by default | ||
6 | - Layer Tap on Caps Lock (tap for Caps Lock, hold for _FN1) | ||
7 | - FORCE_NKRO enabled by default | ||
8 | |||
9 | - Pn key is set to 'KC_NO' by default | ||
10 | * Might be a good place for a macro, or to put your PC to sleep, etc. | ||
11 | |||
12 | - A combined function layer that mimics the sublegends on the stock caps (regardless of layout) | ||
13 | * 'Reset' will put the keyboard into DFU mode | ||
14 | * 'APP' sends 'KC_APP' | ||
15 | * Base layer toggles for QWERTY, COLEMAK, and DVORAK layouts (will persist after reboot) | ||
diff --git a/keyboards/bear_face/v2/keymaps/default_iso/keymap.c b/keyboards/bear_face/v2/keymaps/default_iso/keymap.c new file mode 100644 index 000000000..132c05c4a --- /dev/null +++ b/keyboards/bear_face/v2/keymaps/default_iso/keymap.c | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include QMK_KEYBOARD_H | ||
19 | |||
20 | enum layers { | ||
21 | _QWER, | ||
22 | _COLE, | ||
23 | _DVOR, | ||
24 | _FN1, | ||
25 | }; | ||
26 | |||
27 | #define FN1_CAPS LT(_FN1, KC_CAPS) | ||
28 | |||
29 | //custom keycode enums | ||
30 | enum custom_keycodes { | ||
31 | BASE_QWER = SAFE_RANGE, | ||
32 | BASE_COLE, | ||
33 | BASE_DVOR | ||
34 | }; | ||
35 | |||
36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
37 | [_QWER] = LAYOUT_84_iso( | ||
38 | KC_ESC, 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_NO, KC_DEL, | ||
39 | KC_GRV, 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, KC_HOME, | ||
40 | 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_PGUP, | ||
41 | FN1_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, KC_PGDN, | ||
42 | KC_LSFT, KC_NUBS, 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_END, | ||
43 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
44 | ), | ||
45 | |||
46 | [_COLE] = LAYOUT_84_iso( | ||
47 | KC_ESC, 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_NO, KC_DEL, | ||
48 | KC_GRV, 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, KC_HOME, | ||
49 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, KC_PGUP, | ||
50 | KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, KC_NUHS, KC_ENT, KC_PGDN, | ||
51 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, | ||
52 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
53 | ), | ||
54 | |||
55 | [_DVOR] = LAYOUT_84_iso( | ||
56 | KC_ESC, 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_NO, KC_DEL, | ||
57 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC, KC_RBRC, KC_BSPC, KC_HOME, | ||
58 | KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, KC_PGUP, | ||
59 | FN1_CAPS, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_NUHS, KC_ENT, KC_PGDN, | ||
60 | KC_LSFT, KC_NUBS, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT, KC_UP, KC_END, | ||
61 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
62 | ), | ||
63 | |||
64 | [_FN1] = LAYOUT_84_iso( | ||
65 | _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, KC_INS, | ||
66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_CALC, BASE_QWER, | ||
67 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, RESET, _______, _______, _______, BASE_COLE, | ||
68 | _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, BASE_DVOR, | ||
69 | _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, KC_APP, _______, _______, _______, _______, | ||
70 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
71 | ), | ||
72 | |||
73 | /* | ||
74 | [_BLANK] = LAYOUT_84_iso( | ||
75 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
76 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
77 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
78 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
79 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ _______, _______, | ||
80 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
81 | ), | ||
82 | */ | ||
83 | }; | ||
84 | |||
85 | //macros to allow the user to set whatever default layer they want, even after reboot | ||
86 | |||
87 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
88 | switch (keycode) { | ||
89 | case BASE_QWER: | ||
90 | if (record->event.pressed) { | ||
91 | // when keycode BASE_QWER is pressed | ||
92 | set_single_persistent_default_layer(_QWER); | ||
93 | } else { | ||
94 | // when keycode BASE_QWER is released | ||
95 | } | ||
96 | break; | ||
97 | |||
98 | case BASE_COLE: | ||
99 | if (record->event.pressed) { | ||
100 | // when keycode BASE_COLE is pressed | ||
101 | set_single_persistent_default_layer(_COLE); | ||
102 | } else { | ||
103 | // when keycode BASE_COLE is released | ||
104 | } | ||
105 | break; | ||
106 | |||
107 | case BASE_DVOR: | ||
108 | if (record->event.pressed) { | ||
109 | // when keycode BASE_DVOR is pressed | ||
110 | set_single_persistent_default_layer(_DVOR); | ||
111 | } else { | ||
112 | // when keycode BASE_DVOR is released | ||
113 | } | ||
114 | break; | ||
115 | } | ||
116 | return true; | ||
117 | }; | ||
diff --git a/keyboards/bear_face/v2/keymaps/default_iso/readme.md b/keyboards/bear_face/v2/keymaps/default_iso/readme.md new file mode 100644 index 000000000..517baa572 --- /dev/null +++ b/keyboards/bear_face/v2/keymaps/default_iso/readme.md | |||
@@ -0,0 +1,19 @@ | |||
1 | # default bear_face layout | ||
2 | |||
3 | This layout replaces the stock layout on the Vortex Race 3. | ||
4 | |||
5 | - Caps Lock indicator LED is enabled by default | ||
6 | - Layer Tap on Caps Lock (tap for Caps Lock, hold for _FN1) | ||
7 | - FORCE_NKRO enabled by default | ||
8 | |||
9 | - Pn key is set to 'KC_NO' by default | ||
10 | * Might be a good place for a macro, or to put your PC to sleep, etc. | ||
11 | |||
12 | - A combined function layer that mimics the sublegends on the stock caps (regardless of layout) | ||
13 | * 'Reset' will put the keyboard into DFU mode | ||
14 | * 'APP' sends 'KC_APP' | ||
15 | * Base layer toggles for QWERTY, COLEMAK, and DVORAK layouts (will persist after reboot) | ||
16 | |||
17 | - New things in v2: | ||
18 | * Option of ANSI or ISO layout | ||
19 | * Optional stepped caps (will require compatible plate) | ||
diff --git a/keyboards/bear_face/v2/rules.mk b/keyboards/bear_face/v2/rules.mk new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/bear_face/v2/rules.mk | |||
diff --git a/keyboards/bear_face/v2/v2.c b/keyboards/bear_face/v2/v2.c new file mode 100644 index 000000000..443b3016d --- /dev/null +++ b/keyboards/bear_face/v2/v2.c | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include "bear_face.h" | ||
19 | |||
20 | void keyboard_pre_init_kb(void) { | ||
21 | //Sets LED pin as output | ||
22 | setPinOutput(F7); | ||
23 | |||
24 | keyboard_pre_init_user(); | ||
25 | } | ||
26 | |||
27 | bool led_update_kb(led_t led_state) { | ||
28 | // Caps Lock LED indicator toggling code here | ||
29 | bool res = led_update_user(led_state); | ||
30 | if(res) { | ||
31 | writePin(F7, led_state.caps_lock); | ||
32 | } | ||
33 | return res; | ||
34 | } | ||
diff --git a/keyboards/bear_face/v2/v2.h b/keyboards/bear_face/v2/v2.h new file mode 100644 index 000000000..57004e56b --- /dev/null +++ b/keyboards/bear_face/v2/v2.h | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | Copyright 2020 chemicalwill <https://github.com/chemicalwill> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "quantum.h" | ||
21 | |||
22 | #define LAYOUT_83_ansi( \ | ||
23 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, \ | ||
24 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, \ | ||
25 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, \ | ||
26 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K313, K314, \ | ||
27 | K400, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414, \ | ||
28 | K500, K501, K502, K505, K509, K510, K511, K512, K513, K514 \ | ||
29 | ) { \ | ||
30 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \ | ||
31 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \ | ||
32 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214 }, \ | ||
33 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, KC_NO, K313, K314 }, \ | ||
34 | { K400, KC_NO, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414 }, \ | ||
35 | { K500, K501, K502, KC_NO, KC_NO, K505, KC_NO, KC_NO, KC_NO, K509, K510, K511, K512, K513, K514 } \ | ||
36 | } | ||
37 | |||
38 | #define LAYOUT_84_iso( \ | ||
39 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, \ | ||
40 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, \ | ||
41 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K214, \ | ||
42 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, \ | ||
43 | K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414, \ | ||
44 | K500, K501, K502, K505, K509, K510, K511, K512, K513, K514 \ | ||
45 | ) { \ | ||
46 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \ | ||
47 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \ | ||
48 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, KC_NO, K214 }, \ | ||
49 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314 }, \ | ||
50 | { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414 }, \ | ||
51 | { K500, K501, K502, KC_NO, KC_NO, K505, KC_NO, KC_NO, KC_NO, K509, K510, K511, K512, K513, K514 } \ | ||
52 | } | ||