diff options
| author | chemicalwill <36576135+chemicalwill@users.noreply.github.com> | 2020-07-28 00:42:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-27 22:42:32 -0700 |
| commit | 51dbca2332609ee08b98c1c0ab729b0f08f144f1 (patch) | |
| tree | 93a1e7de404cd142489131ecf671683b03d66203 /keyboards/bear_face | |
| parent | bcfb70a4cb943fa17c221db55b155abc3598fbdd (diff) | |
[Keyboard] add bear_face/v2 (#9642)
* [keyboard] bear_face/v2 initial commit
* restructured keyboard dir for multiple versions
* fixed .json layouts for ISO
* reformatted hard tabs to soft tabs
* updated readmes
* [keyboard] removed top-level info.json, keymaps
* [bear_face/v2] changed matrix height, arrow key labels
* fixed height 6 instead of 5
* symbols for arrows now directions (i.e. "Left" etc.)
* [bear_face/v2] fixed ISO enter in .json
* corrected placement for ISO enter
* Update rules.mk
* DEFAULT_FOLDER = bear_face/v1
* [bear_face] fixed matrix width in info.json
* true matrix width is 15
* updated for v1 and v2 info.json
* Update keyboards/bear_face/config.h
* Update keyboards/bear_face/v1/info.json
* Update keyboards/bear_face/v2/info.json
* Update keyboards/bear_face/v2/info.json
* Update keyboards/bear_face/rules.mk
* Fixed default keymap tabs
* changed from tabs to spaces
Diffstat (limited to 'keyboards/bear_face')
23 files changed, 899 insertions, 267 deletions
diff --git a/keyboards/bear_face/bear_face.c b/keyboards/bear_face/bear_face.c index 443b3016d7..30aa5140d4 100644 --- a/keyboards/bear_face/bear_face.c +++ b/keyboards/bear_face/bear_face.c | |||
| @@ -16,19 +16,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #include "bear_face.h" | 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/bear_face.h b/keyboards/bear_face/bear_face.h index 2337a4f731..c63b2bd012 100644 --- a/keyboards/bear_face/bear_face.h +++ b/keyboards/bear_face/bear_face.h | |||
| @@ -19,18 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 19 | 19 | ||
| 20 | #include "quantum.h" | 20 | #include "quantum.h" |
| 21 | 21 | ||
| 22 | #define LAYOUT_83_ansi( \ | 22 | #if defined(KEYBOARD_bear_face_v1) |
| 23 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, \ | 23 | # include "v1.h" |
| 24 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, \ | 24 | #elif defined(KEYBOARD_bear_face_v2) |
| 25 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, \ | 25 | # include "v2.h" |
| 26 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K313, K314, \ | 26 | #endif |
| 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/config.h b/keyboards/bear_face/config.h index 0b7aa62836..9b389f127a 100644 --- a/keyboards/bear_face/config.h +++ b/keyboards/bear_face/config.h | |||
| @@ -20,27 +20,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 20 | #include "config_common.h" | 20 | #include "config_common.h" |
| 21 | 21 | ||
| 22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
| 23 | #define VENDOR_ID 0xCEEB | 23 | #define VENDOR_ID 0xFEED |
| 24 | #define PRODUCT_ID 0x09f5 | 24 | #define PRODUCT_ID 0x09f5 |
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER chemicalwill | 25 | #define MANUFACTURER chemicalwill |
| 27 | #define PRODUCT bear_face | 26 | #define PRODUCT bear_face |
| 28 | #define DESCRIPTION Vortex Race 3 programmable PCB replacement | ||
| 29 | 27 | ||
| 30 | /* key matrix size */ | 28 | /* key matrix size */ |
| 31 | #define MATRIX_ROWS 6 | 29 | #define MATRIX_ROWS 6 |
| 32 | #define MATRIX_COLS 15 | 30 | #define MATRIX_COLS 15 |
| 33 | 31 | ||
| 34 | /* | 32 | /* bear_face matrix pinout */ |
| 35 | * Keyboard Matrix Assignments | ||
| 36 | * | ||
| 37 | * Change this to how you wired your keyboard | ||
| 38 | * COLS: AVR pins used for columns, left to right | ||
| 39 | * ROWS: AVR pins used for rows, top to bottom | ||
| 40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 42 | * | ||
| 43 | */ | ||
| 44 | #define MATRIX_ROW_PINS { F5, F6, F4, F1, B0, B6 } | 33 | #define MATRIX_ROW_PINS { F5, F6, F4, F1, B0, B6 } |
| 45 | #define MATRIX_COL_PINS { B5, C7, C6, F0, E6, B7, D0, D1, D2, D3, D5, D4, D6, D7, B4 } | 34 | #define MATRIX_COL_PINS { B5, C7, C6, F0, E6, B7, D0, D1, D2, D3, D5, D4, D6, D7, B4 } |
| 46 | #define UNUSED_PINS | 35 | #define UNUSED_PINS |
| @@ -49,39 +38,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 49 | #define DIODE_DIRECTION COL2ROW | 38 | #define DIODE_DIRECTION COL2ROW |
| 50 | 39 | ||
| 51 | #define BACKLIGHT_PIN F7 | 40 | #define BACKLIGHT_PIN F7 |
| 52 | //#define BACKLIGHT_BREATHING | ||
| 53 | //#define BACKLIGHT_LEVELS 3 | ||
| 54 | |||
| 55 | // #define RGB_DI_PIN E2 | ||
| 56 | // #ifdef RGB_DI_PIN | ||
| 57 | // #define RGBLED_NUM 16 | ||
| 58 | // #define RGBLIGHT_HUE_STEP 8 | ||
| 59 | // #define RGBLIGHT_SAT_STEP 8 | ||
| 60 | // #define RGBLIGHT_VAL_STEP 8 | ||
| 61 | // #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 62 | // #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 63 | // /*== all animations enable ==*/ | ||
| 64 | // #define RGBLIGHT_ANIMATIONS | ||
| 65 | // /*== or choose animations ==*/ | ||
| 66 | // #define RGBLIGHT_EFFECT_BREATHING | ||
| 67 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 68 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 69 | // #define RGBLIGHT_EFFECT_SNAKE | ||
| 70 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
| 71 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 72 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 73 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 74 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 75 | // #endif | ||
| 76 | 41 | ||
| 77 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | 42 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ |
| 78 | #define DEBOUNCE 6 | 43 | #define DEBOUNCE 6 |
| 79 | 44 | ||
| 80 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 81 | //#define MATRIX_HAS_GHOST | ||
| 82 | |||
| 83 | /* number of backlight levels */ | ||
| 84 | |||
| 85 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | 45 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ |
| 86 | #define LOCKING_SUPPORT_ENABLE | 46 | #define LOCKING_SUPPORT_ENABLE |
| 87 | /* Locking resynchronize hack */ | 47 | /* Locking resynchronize hack */ |
| @@ -120,42 +80,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 120 | * | 80 | * |
| 121 | */ | 81 | */ |
| 122 | 82 | ||
| 123 | /* control how magic key switches layers */ | ||
| 124 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 125 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 126 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 127 | |||
| 128 | /* override magic key keymap */ | ||
| 129 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 130 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 131 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 132 | //#define MAGIC_KEY_HELP1 H | ||
| 133 | //#define MAGIC_KEY_HELP2 SLASH | ||
| 134 | //#define MAGIC_KEY_DEBUG D | ||
| 135 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 136 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 137 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 138 | //#define MAGIC_KEY_VERSION V | ||
| 139 | //#define MAGIC_KEY_STATUS S | ||
| 140 | //#define MAGIC_KEY_CONSOLE C | ||
| 141 | //#define MAGIC_KEY_LAYER0_ALT1 ESC | ||
| 142 | //#define MAGIC_KEY_LAYER0_ALT2 GRAVE | ||
| 143 | //#define MAGIC_KEY_LAYER0 0 | ||
| 144 | //#define MAGIC_KEY_LAYER1 1 | ||
| 145 | //#define MAGIC_KEY_LAYER2 2 | ||
| 146 | //#define MAGIC_KEY_LAYER3 3 | ||
| 147 | //#define MAGIC_KEY_LAYER4 4 | ||
| 148 | //#define MAGIC_KEY_LAYER5 5 | ||
| 149 | //#define MAGIC_KEY_LAYER6 6 | ||
| 150 | //#define MAGIC_KEY_LAYER7 7 | ||
| 151 | //#define MAGIC_KEY_LAYER8 8 | ||
| 152 | //#define MAGIC_KEY_LAYER9 9 | ||
| 153 | //#define MAGIC_KEY_BOOTLOADER PAUSE | ||
| 154 | //#define MAGIC_KEY_LOCK CAPS | ||
| 155 | //#define MAGIC_KEY_EEPROM E | ||
| 156 | //#define MAGIC_KEY_NKRO N | ||
| 157 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 158 | |||
| 159 | /* | 83 | /* |
| 160 | * Feature disable options | 84 | * Feature disable options |
| 161 | * These options are also useful to firmware size reduction. | 85 | * These options are also useful to firmware size reduction. |
diff --git a/keyboards/bear_face/info.json b/keyboards/bear_face/info.json deleted file mode 100644 index 61cab52cfd..0000000000 --- a/keyboards/bear_face/info.json +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "bear_face", | ||
| 3 | "url": "https://github.com/chemicalwill/bear_face_pcb", | ||
| 4 | "maintainer": "chemicalwill", | ||
| 5 | "width": 16, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_83_ansi": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"Esc", "x":0, "y":0, "w":1.5}, {"label":"F1", "x":1.5, "y":0}, {"label":"F2", "x":2.5, "y":0}, {"label":"F3", "x":3.5, "y":0}, {"label":"F4", "x":4.5, "y":0}, {"label":"F5", "x":5.5, "y":0}, {"label":"F6", "x":6.5, "y":0}, {"label":"F7", "x":7.5, "y":0}, {"label":"F8", "x":8.5, "y":0}, {"label":"F9", "x":9.5, "y":0}, {"label":"F10", "x":10.5, "y":0}, {"label":"F11", "x":11.5, "y":0}, {"label":"F12", "x":12.5, "y":0}, {"label":"Pn", "x":13.5, "y":0}, {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
| 11 | {"label":"~", "x":0, "y":1}, {"label":"!", "x":1, "y":1}, {"label":"@", "x":2, "y":1}, {"label":"#", "x":3, "y":1}, {"label":"$", "x":4, "y":1}, {"label":"%", "x":5, "y":1}, {"label":"^", "x":6, "y":1}, {"label":"&", "x":7, "y":1}, {"label":"*", "x":8, "y":1}, {"label":"(", "x":9, "y":1}, {"label":")", "x":10, "y":1}, {"label":"{", "x":11, "y":1}, {"label":"}", "x":12, "y":1}, {"label":"Backspace", "x":13, "y":1, "w":2}, {"label":"Home", "x":15, "y":1}, | ||
| 12 | {"label":"Tab", "x":0, "y":2, "w":1.5}, {"label":"Q", "x":1.5, "y":2}, {"label":"W", "x":2.5, "y":2}, {"label":"E", "x":3.5, "y":2}, {"label":"R", "x":4.5, "y":2}, {"label":"T", "x":5.5, "y":2}, {"label":"Y", "x":6.5, "y":2}, {"label":"U", "x":7.5, "y":2}, {"label":"I", "x":8.5, "y":2}, {"label":"O", "x":9.5, "y":2}, {"label":"P", "x":10.5, "y":2}, {"label":"{", "x":11.5, "y":2}, {"label":"}", "x":12.5, "y":2}, {"label":"|", "x":13.5, "y":2, "w":1.5}, {"label":"Pg Up", "x":15, "y":2}, | ||
| 13 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, {"label":"A", "x":1.75, "y":3}, {"label":"S", "x":2.75, "y":3}, {"label":"D", "x":3.75, "y":3}, {"label":"F", "x":4.75, "y":3}, {"label":"G", "x":5.75, "y":3}, {"label":"H", "x":6.75, "y":3}, {"label":"J", "x":7.75, "y":3}, {"label":"K", "x":8.75, "y":3}, {"label":"L", "x":9.75, "y":3}, {"label":":", "x":10.75, "y":3}, {"label":"\"", "x":11.75, "y":3}, {"label":"Enter", "x":12.75, "y":3, "w":2.25}, {"label":"Pg Dn", "x":15, "y":3}, | ||
| 14 | {"label":"Shift", "x":0, "y":4, "w":2.25}, {"label":"Z", "x":2.25, "y":4}, {"label":"X", "x":3.25, "y":4}, {"label":"C", "x":4.25, "y":4}, {"label":"V", "x":5.25, "y":4}, {"label":"B", "x":6.25, "y":4}, {"label":"N", "x":7.25, "y":4}, {"label":"M", "x":8.25, "y":4}, {"label":"<", "x":9.25, "y":4}, {"label":">", "x":10.25, "y":4}, {"label":"?", "x":11.25, "y":4}, {"label":"Shift", "x":12.25, "y":4, "w":1.75}, {"label":"Up", "x":14, "y":4}, {"label":"End", "x":15, "y":4}, | ||
| 15 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, {"label":"Win", "x":1.25, "y":5, "w":1.25}, {"label":"Alt", "x":2.5, "y":5, "w":1.25}, {"x":3.75, "y":5, "w":6.25}, {"label":"Alt", "x":10, "y":5}, {"label":"Fn", "x":11, "y":5}, {"label":"Ctrl", "x":12, "y":5}, {"label":"Left", "x":13, "y":5}, {"label":"Down", "x":14, "y":5}, {"label":"Right", "x":15, "y":5} | ||
| 16 | ] | ||
| 17 | } | ||
| 18 | } | ||
| 19 | } | ||
diff --git a/keyboards/bear_face/keymaps/default/keymap.c b/keyboards/bear_face/keymaps/default/keymap.c deleted file mode 100644 index 774f32190a..0000000000 --- a/keyboards/bear_face/keymaps/default/keymap.c +++ /dev/null | |||
| @@ -1,117 +0,0 @@ | |||
| 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/readme.md b/keyboards/bear_face/readme.md index f81214ce82..212418e374 100644 --- a/keyboards/bear_face/readme.md +++ b/keyboards/bear_face/readme.md | |||
| @@ -1,15 +1,16 @@ | |||
| 1 | # bear_face | 1 | # bear_face |
| 2 | 2 | ||
| 3 |  | 3 |  |
| 4 | 4 | ||
| 5 | Vortex Race 3 with replacement QMK-compatible PCB designed by [chemicalwill](https://github.com/chemicalwill) | 5 | QMK-compatible replacement PCB for the Vortex Race 3 designed by [chemicalwill](https://github.com/chemicalwill) |
| 6 | 6 | ||
| 7 | * Keyboard Maintainer: [Will Hedges](https://github.com/chemicalwill) | 7 | * Keyboard Maintainer: [chemicalwill](https://github.com/chemicalwill) |
| 8 | * Hardware Supported: bear_face v1.0, atmega32u4 | 8 | * Hardware Supported: bear_face v1, v2; atmega32u4 |
| 9 | * Hardware Availability: [PCB files](https://github.com/chemicalwill/bear_face) | 9 | * Hardware Availability: [currently by request](https://www.reddit.com/message/compose?to=chemicalwill&subject=bear_face%20v2) |
| 10 | 10 | ||
| 11 | Make example for this keyboard (after setting up your build environment): | 11 | Make example for this keyboard (after setting up your build environment): |
| 12 | 12 | ||
| 13 | make bear_face:default | 13 | make bear_face/v1:default |
| 14 | make bear_face/v2:default | ||
| 14 | 15 | ||
| 15 | 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). | 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 index fafe7ebd12..499388ed18 100644 --- a/keyboards/bear_face/rules.mk +++ b/keyboards/bear_face/rules.mk | |||
| @@ -2,20 +2,12 @@ | |||
| 2 | MCU = atmega32u4 | 2 | MCU = atmega32u4 |
| 3 | 3 | ||
| 4 | # Bootloader selection | 4 | # Bootloader selection |
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = atmel-dfu | 5 | BOOTLOADER = atmel-dfu |
| 13 | 6 | ||
| 14 | # Build Options | 7 | # Build Options |
| 15 | # change yes to no to disable | 8 | # change yes to no to disable |
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE = no # Console for debug | 12 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE = no # Commands for debug and configuration | 13 | COMMAND_ENABLE = no # Commands for debug and configuration |
| @@ -26,6 +18,7 @@ NKRO_ENABLE = yes # USB Nkey Rollover | |||
| 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 19 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 28 | MIDI_ENABLE = no # MIDI controls | 20 | MIDI_ENABLE = no # MIDI controls |
| 29 | UNICODE_ENABLE = no # Unicode | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | AUDIO_ENABLE = no # Audio output6 |
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | |
| 24 | DEFAULT_FOLDER = bear_face/v1 | ||
diff --git a/keyboards/bear_face/v1/config.h b/keyboards/bear_face/v1/config.h new file mode 100644 index 0000000000..cf1de932c1 --- /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 0000000000..6fbc4229b8 --- /dev/null +++ b/keyboards/bear_face/v1/info.json | |||
| @@ -0,0 +1,101 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "bear_face", | ||
| 3 | "url": "https://github.com/chemicalwill/bear_face_pcb", | ||
| 4 | "maintainer": "chemicalwill", | ||
| 5 | "width": 15, | ||
| 6 | "height": 6, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_83_ansi": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"Esc", "x":0, "y":0, "w":1.5}, | ||
| 11 | {"label":"F1", "x":1.5, "y":0}, | ||
| 12 | {"label":"F2", "x":2.5, "y":0}, | ||
| 13 | {"label":"F3", "x":3.5, "y":0}, | ||
| 14 | {"label":"F4", "x":4.5, "y":0}, | ||
| 15 | {"label":"F5", "x":5.5, "y":0}, | ||
| 16 | {"label":"F6", "x":6.5, "y":0}, | ||
| 17 | {"label":"F7", "x":7.5, "y":0}, | ||
| 18 | {"label":"F8", "x":8.5, "y":0}, | ||
| 19 | {"label":"F9", "x":9.5, "y":0}, | ||
| 20 | {"label":"F10", "x":10.5, "y":0}, | ||
| 21 | {"label":"F11", "x":11.5, "y":0}, | ||
| 22 | {"label":"F12", "x":12.5, "y":0}, | ||
| 23 | {"label":"Pn", "x":13.5, "y":0}, | ||
| 24 | {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
| 25 | |||
| 26 | {"label":"~", "x":0, "y":1}, | ||
| 27 | {"label":"!", "x":1, "y":1}, | ||
| 28 | {"label":"@", "x":2, "y":1}, | ||
| 29 | {"label":"#", "x":3, "y":1}, | ||
| 30 | {"label":"$", "x":4, "y":1}, | ||
| 31 | {"label":"%", "x":5, "y":1}, | ||
| 32 | {"label":"^", "x":6, "y":1}, | ||
| 33 | {"label":"&", "x":7, "y":1}, | ||
| 34 | {"label":"*", "x":8, "y":1}, | ||
| 35 | {"label":"(", "x":9, "y":1}, | ||
| 36 | {"label":")", "x":10, "y":1}, | ||
| 37 | {"label":"_", "x":11, "y":1}, | ||
| 38 | {"label":"+", "x":12, "y":1}, | ||
| 39 | {"label":"Backspace", "x":13, "y":1, "w":2}, | ||
| 40 | {"label":"Home", "x":15, "y":1}, | ||
| 41 | |||
| 42 | {"label":"Tab", "x":0, "y":2, "w":1.5}, | ||
| 43 | {"label":"Q", "x":1.5, "y":2}, | ||
| 44 | {"label":"W", "x":2.5, "y":2}, | ||
| 45 | {"label":"E", "x":3.5, "y":2}, | ||
| 46 | {"label":"R", "x":4.5, "y":2}, | ||
| 47 | {"label":"T", "x":5.5, "y":2}, | ||
| 48 | {"label":"Y", "x":6.5, "y":2}, | ||
| 49 | {"label":"U", "x":7.5, "y":2}, | ||
| 50 | {"label":"I", "x":8.5, "y":2}, | ||
| 51 | {"label":"O", "x":9.5, "y":2}, | ||
| 52 | {"label":"P", "x":10.5, "y":2}, | ||
| 53 | {"label":"{", "x":11.5, "y":2}, | ||
| 54 | {"label":"}", "x":12.5, "y":2}, | ||
| 55 | {"label":"|", "x":13.5, "y":2, "w":1.5}, | ||
| 56 | {"label":"Pg Up", "x":15, "y":2}, | ||
| 57 | |||
| 58 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, | ||
| 59 | {"label":"A", "x":1.75, "y":3}, | ||
| 60 | {"label":"S", "x":2.75, "y":3}, | ||
| 61 | {"label":"D", "x":3.75, "y":3}, | ||
| 62 | {"label":"F", "x":4.75, "y":3}, | ||
| 63 | {"label":"G", "x":5.75, "y":3}, | ||
| 64 | {"label":"H", "x":6.75, "y":3}, | ||
| 65 | {"label":"J", "x":7.75, "y":3}, | ||
| 66 | {"label":"K", "x":8.75, "y":3}, | ||
| 67 | {"label":"L", "x":9.75, "y":3}, | ||
| 68 | {"label":":", "x":10.75, "y":3}, | ||
| 69 | {"label":"\"", "x":11.75, "y":3}, | ||
| 70 | {"label":"Enter", "x":12.75, "y":3, "w":2.25}, | ||
| 71 | {"label":"Pg Dn", "x":15, "y":3}, | ||
| 72 | |||
| 73 | {"label":"Shift", "x":0, "y":4, "w":2.25}, | ||
| 74 | {"label":"Z", "x":2.25, "y":4}, | ||
| 75 | {"label":"X", "x":3.25, "y":4}, | ||
| 76 | {"label":"C", "x":4.25, "y":4}, | ||
| 77 | {"label":"V", "x":5.25, "y":4}, | ||
| 78 | {"label":"B", "x":6.25, "y":4}, | ||
| 79 | {"label":"N", "x":7.25, "y":4}, | ||
| 80 | {"label":"M", "x":8.25, "y":4}, | ||
| 81 | {"label":"<", "x":9.25, "y":4}, | ||
| 82 | {"label":">", "x":10.25, "y":4}, | ||
| 83 | {"label":"?", "x":11.25, "y":4}, | ||
| 84 | {"label":"Shift", "x":12.25, "y":4, "w":1.75}, | ||
| 85 | {"label":"Up", "x":14, "y":4}, | ||
| 86 | {"label":"End", "x":15, "y":4}, | ||
| 87 | |||
| 88 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, | ||
| 89 | {"label":"Win", "x":1.25, "y":5, "w":1.25}, | ||
| 90 | {"label":"Alt", "x":2.5, "y":5, "w":1.25}, | ||
| 91 | {"x":3.75, "y":5, "w":6.25}, | ||
| 92 | {"label":"Alt", "x":10, "y":5}, | ||
| 93 | {"label":"Fn", "x":11, "y":5}, | ||
| 94 | {"label":"Ctrl", "x":12, "y":5}, | ||
| 95 | {"label":"Left", "x":13, "y":5}, | ||
| 96 | {"label":"Down", "x":14, "y":5}, | ||
| 97 | {"label":"Right", "x":15, "y":5} | ||
| 98 | ] | ||
| 99 | } | ||
| 100 | } | ||
| 101 | } | ||
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 0000000000..527b041929 --- /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/keymaps/default/readme.md b/keyboards/bear_face/v1/keymaps/default/readme.md index 3b2e8380f7..5f9e635dfe 100644 --- a/keyboards/bear_face/keymaps/default/readme.md +++ b/keyboards/bear_face/v1/keymaps/default/readme.md | |||
| @@ -5,10 +5,11 @@ This layout replaces the stock layout on the Vortex Race 3. | |||
| 5 | - Caps Lock indicator LED is enabled by default | 5 | - Caps Lock indicator LED is enabled by default |
| 6 | - Layer Tap on Caps Lock (tap for Caps Lock, hold for _FN1) | 6 | - Layer Tap on Caps Lock (tap for Caps Lock, hold for _FN1) |
| 7 | - FORCE_NKRO enabled by default | 7 | - FORCE_NKRO enabled by default |
| 8 | |||
| 8 | - Pn key is set to 'KC_NO' by default | 9 | - Pn key is set to 'KC_NO' by default |
| 9 | * might be a good place for a macro, or to put your PC to sleep, etc. | 10 | * Might be a good place for a macro, or to put your PC to sleep, etc. |
| 10 | - a combined function layer that mimics the sublegends on the stock caps (regardless of layout) | 11 | |
| 12 | - A combined function layer that mimics the sublegends on the stock caps (regardless of layout) | ||
| 11 | * 'Reset' will put the keyboard into DFU mode | 13 | * 'Reset' will put the keyboard into DFU mode |
| 12 | * 'APP' sends 'KC_APP' | 14 | * 'APP' sends 'KC_APP' |
| 13 | * set base layer toggles for QWERTY, COLEMAK, and DVORAK layouts (will persist after reboot) | 15 | * Base layer toggles for QWERTY, COLEMAK, and DVORAK layouts (will persist after reboot) |
| 14 | \ No newline at end of file | ||
diff --git a/keyboards/bear_face/v1/rules.mk b/keyboards/bear_face/v1/rules.mk new file mode 100644 index 0000000000..e69de29bb2 --- /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 0000000000..443b3016d7 --- /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 0000000000..2337a4f731 --- /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 0000000000..6a7c8c6fb0 --- /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 0000000000..552c88defb --- /dev/null +++ b/keyboards/bear_face/v2/info.json | |||
| @@ -0,0 +1,195 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "bear_face", | ||
| 3 | "url": "https://github.com/chemicalwill/bear_face_pcb", | ||
| 4 | "maintainer": "chemicalwill", | ||
| 5 | "width": 15, | ||
| 6 | "height": 6, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_83_ansi": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"Esc", "x":0, "y":0, "w":1.5}, | ||
| 11 | {"label":"F1", "x":1.5, "y":0}, | ||
| 12 | {"label":"F2", "x":2.5, "y":0}, | ||
| 13 | {"label":"F3", "x":3.5, "y":0}, | ||
| 14 | {"label":"F4", "x":4.5, "y":0}, | ||
| 15 | {"label":"F5", "x":5.5, "y":0}, | ||
| 16 | {"label":"F6", "x":6.5, "y":0}, | ||
| 17 | {"label":"F7", "x":7.5, "y":0}, | ||
| 18 | {"label":"F8", "x":8.5, "y":0}, | ||
| 19 | {"label":"F9", "x":9.5, "y":0}, | ||
| 20 | {"label":"F10", "x":10.5, "y":0}, | ||
| 21 | {"label":"F11", "x":11.5, "y":0}, | ||
| 22 | {"label":"F12", "x":12.5, "y":0}, | ||
| 23 | {"label":"Pn", "x":13.5, "y":0}, | ||
| 24 | {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
| 25 | |||
| 26 | {"label":"~", "x":0, "y":1}, | ||
| 27 | {"label":"!", "x":1, "y":1}, | ||
| 28 | {"label":"@", "x":2, "y":1}, | ||
| 29 | {"label":"#", "x":3, "y":1}, | ||
| 30 | {"label":"$", "x":4, "y":1}, | ||
| 31 | {"label":"%", "x":5, "y":1}, | ||
| 32 | {"label":"^", "x":6, "y":1}, | ||
| 33 | {"label":"&", "x":7, "y":1}, | ||
| 34 | {"label":"*", "x":8, "y":1}, | ||
| 35 | {"label":"(", "x":9, "y":1}, | ||
| 36 | {"label":")", "x":10, "y":1}, | ||
| 37 | {"label":"_", "x":11, "y":1}, | ||
| 38 | {"label":"+", "x":12, "y":1}, | ||
| 39 | {"label":"Backspace", "x":13, "y":1, "w":2}, | ||
| 40 | {"label":"Home", "x":15, "y":1}, | ||
| 41 | |||
| 42 | {"label":"Tab", "x":0, "y":2, "w":1.5}, | ||
| 43 | {"label":"Q", "x":1.5, "y":2}, | ||
| 44 | {"label":"W", "x":2.5, "y":2}, | ||
| 45 | {"label":"E", "x":3.5, "y":2}, | ||
| 46 | {"label":"R", "x":4.5, "y":2}, | ||
| 47 | {"label":"T", "x":5.5, "y":2}, | ||
| 48 | {"label":"Y", "x":6.5, "y":2}, | ||
| 49 | {"label":"U", "x":7.5, "y":2}, | ||
| 50 | {"label":"I", "x":8.5, "y":2}, | ||
| 51 | {"label":"O", "x":9.5, "y":2}, | ||
| 52 | {"label":"P", "x":10.5, "y":2}, | ||
| 53 | {"label":"{", "x":11.5, "y":2}, | ||
| 54 | {"label":"}", "x":12.5, "y":2}, | ||
| 55 | {"label":"|", "x":13.5, "y":2, "w":1.5}, | ||
| 56 | {"label":"Pg Up", "x":15, "y":2}, | ||
| 57 | |||
| 58 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, | ||
| 59 | {"label":"A", "x":1.75, "y":3}, | ||
| 60 | {"label":"S", "x":2.75, "y":3}, | ||
| 61 | {"label":"D", "x":3.75, "y":3}, | ||
| 62 | {"label":"F", "x":4.75, "y":3}, | ||
| 63 | {"label":"G", "x":5.75, "y":3}, | ||
| 64 | {"label":"H", "x":6.75, "y":3}, | ||
| 65 | {"label":"J", "x":7.75, "y":3}, | ||
| 66 | {"label":"K", "x":8.75, "y":3}, | ||
| 67 | {"label":"L", "x":9.75, "y":3}, | ||
| 68 | {"label":":", "x":10.75, "y":3}, | ||
| 69 | {"label":"\"", "x":11.75, "y":3}, | ||
| 70 | {"label":"Enter", "x":12.75, "y":3, "w":2.25}, | ||
| 71 | {"label":"Pg Dn", "x":15, "y":3}, | ||
| 72 | |||
| 73 | {"label":"Shift", "x":0, "y":4, "w":2.25}, | ||
| 74 | {"label":"Z", "x":2.25, "y":4}, | ||
| 75 | {"label":"X", "x":3.25, "y":4}, | ||
| 76 | {"label":"C", "x":4.25, "y":4}, | ||
| 77 | {"label":"V", "x":5.25, "y":4}, | ||
| 78 | {"label":"B", "x":6.25, "y":4}, | ||
| 79 | {"label":"N", "x":7.25, "y":4}, | ||
| 80 | {"label":"M", "x":8.25, "y":4}, | ||
| 81 | {"label":"<", "x":9.25, "y":4}, | ||
| 82 | {"label":">", "x":10.25, "y":4}, | ||
| 83 | {"label":"?", "x":11.25, "y":4}, | ||
| 84 | {"label":"Shift", "x":12.25, "y":4, "w":1.75}, | ||
| 85 | {"label":"Up", "x":14, "y":4}, | ||
| 86 | {"label":"End", "x":15, "y":4}, | ||
| 87 | |||
| 88 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, | ||
| 89 | {"label":"Win", "x":1.25, "y":5, "w":1.25}, | ||
| 90 | {"label":"Alt", "x":2.5, "y":5, "w":1.25}, | ||
| 91 | {"x":3.75, "y":5, "w":6.25}, | ||
| 92 | {"label":"Alt", "x":10, "y":5}, | ||
| 93 | {"label":"Fn", "x":11, "y":5}, | ||
| 94 | {"label":"Ctrl", "x":12, "y":5}, | ||
| 95 | {"label":"Left", "x":13, "y":5}, | ||
| 96 | {"label":"Down", "x":14, "y":5}, | ||
| 97 | {"label":"Right", "x":15, "y":5} | ||
| 98 | ] | ||
| 99 | }, | ||
| 100 | |||
| 101 | "LAYOUT_84_iso": { | ||
| 102 | "layout": [ | ||
| 103 | {"label":"Esc", "x":0, "y":0, "w":1.5}, | ||
| 104 | {"label":"F1", "x":1.5, "y":0}, | ||
| 105 | {"label":"F2", "x":2.5, "y":0}, | ||
| 106 | {"label":"F3", "x":3.5, "y":0}, | ||
| 107 | {"label":"F4", "x":4.5, "y":0}, | ||
| 108 | {"label":"F5", "x":5.5, "y":0}, | ||
| 109 | {"label":"F6", "x":6.5, "y":0}, | ||
| 110 | {"label":"F7", "x":7.5, "y":0}, | ||
| 111 | {"label":"F8", "x":8.5, "y":0}, | ||
| 112 | {"label":"F9", "x":9.5, "y":0}, | ||
| 113 | {"label":"F10", "x":10.5, "y":0}, | ||
| 114 | {"label":"F11", "x":11.5, "y":0}, | ||
| 115 | {"label":"F12", "x":12.5, "y":0}, | ||
| 116 | {"label":"Pn", "x":13.5, "y":0}, | ||
| 117 | {"label":"Delete", "x":14.5, "y":0, "w":1.5}, | ||
| 118 | |||
| 119 | {"label":"\u00ac", "x":0, "y":1}, | ||
| 120 | {"label":"!", "x":1, "y":1}, | ||
| 121 | {"label":"@", "x":2, "y":1}, | ||
| 122 | {"label":"\u00a3", "x":3, "y":1}, | ||
| 123 | {"label":"$", "x":4, "y":1}, | ||
| 124 | {"label":"%", "x":5, "y":1}, | ||
| 125 | {"label":"^", "x":6, "y":1}, | ||
| 126 | {"label":"&", "x":7, "y":1}, | ||
| 127 | {"label":"*", "x":8, "y":1}, | ||
| 128 | {"label":"(", "x":9, "y":1}, | ||
| 129 | {"label":")", "x":10, "y":1}, | ||
| 130 | {"label":"_", "x":11, "y":1}, | ||
| 131 | {"label":"+", "x":12, "y":1}, | ||
| 132 | {"label":"Backspace", "x":13, "y":1, "w":2}, | ||
| 133 | {"label":"Home", "x":15, "y":1}, | ||
| 134 | |||
| 135 | {"label":"Tab", "x":0, "y":2, "w":1.5}, | ||
| 136 | {"label":"Q", "x":1.5, "y":2}, | ||
| 137 | {"label":"W", "x":2.5, "y":2}, | ||
| 138 | {"label":"E", "x":3.5, "y":2}, | ||
| 139 | {"label":"R", "x":4.5, "y":2}, | ||
| 140 | {"label":"T", "x":5.5, "y":2}, | ||
| 141 | {"label":"Y", "x":6.5, "y":2}, | ||
| 142 | {"label":"U", "x":7.5, "y":2}, | ||
| 143 | {"label":"I", "x":8.5, "y":2}, | ||
| 144 | {"label":"O", "x":9.5, "y":2}, | ||
| 145 | {"label":"P", "x":10.5, "y":2}, | ||
| 146 | {"label":"{", "x":11.5, "y":2}, | ||
| 147 | {"label":"}", "x":12.5, "y":2}, | ||
| 148 | {"label":"Pg Up", "x":15, "y":2}, | ||
| 149 | |||
| 150 | {"label":"Caps Lock", "x":0, "y":3, "w":1.75}, | ||
| 151 | {"label":"A", "x":1.75, "y":3}, | ||
| 152 | {"label":"S", "x":2.75, "y":3}, | ||
| 153 | {"label":"D", "x":3.75, "y":3}, | ||
| 154 | {"label":"F", "x":4.75, "y":3}, | ||
| 155 | {"label":"G", "x":5.75, "y":3}, | ||
| 156 | {"label":"H", "x":6.75, "y":3}, | ||
| 157 | {"label":"J", "x":7.75, "y":3}, | ||
| 158 | {"label":"K", "x":8.75, "y":3}, | ||
| 159 | {"label":"L", "x":9.75, "y":3}, | ||
| 160 | {"label":":", "x":10.75, "y":3}, | ||
| 161 | {"label":"\"", "x":11.75, "y":3}, | ||
| 162 | {"label":"~", "x":12.75, "y":3}, | ||
| 163 | {"label":"Enter", "x":13.75, "y":2, "w":1.25, "h":2}, | ||
| 164 | {"label":"Pg Dn", "x":15, "y":3}, | ||
| 165 | |||
| 166 | {"label":"Shift", "x":0, "y":4, "w":1.25}, | ||
| 167 | {"label":"|", "x":1.25, "y":4}, | ||
| 168 | {"label":"Z", "x":2.25, "y":4}, | ||
| 169 | {"label":"X", "x":3.25, "y":4}, | ||
| 170 | {"label":"C", "x":4.25, "y":4}, | ||
| 171 | {"label":"V", "x":5.25, "y":4}, | ||
| 172 | {"label":"B", "x":6.25, "y":4}, | ||
| 173 | {"label":"N", "x":7.25, "y":4}, | ||
| 174 | {"label":"M", "x":8.25, "y":4}, | ||
| 175 | {"label":"<", "x":9.25, "y":4}, | ||
| 176 | {"label":">", "x":10.25, "y":4}, | ||
| 177 | {"label":"?", "x":11.25, "y":4}, | ||
| 178 | {"label":"Shift", "x":12.25, "y":4, "w":1.75}, | ||
| 179 | {"label":"Up", "x":14, "y":4}, | ||
| 180 | {"label":"End", "x":15, "y":4}, | ||
| 181 | |||
| 182 | {"label":"Ctrl", "x":0, "y":5, "w":1.25}, | ||
| 183 | {"label":"Win", "x":1.25, "y":5, "w":1.25}, | ||
| 184 | {"label":"Alt", "x":2.5, "y":5, "w":1.25}, | ||
| 185 | {"x":3.75, "y":5, "w":6.25}, | ||
| 186 | {"label":"Alt Gr", "x":10, "y":5}, | ||
| 187 | {"label":"Fn", "x":11, "y":5}, | ||
| 188 | {"label":"Ctrl", "x":12, "y":5}, | ||
| 189 | {"label":"Left", "x":13, "y":5}, | ||
| 190 | {"label":"Down", "x":14, "y":5}, | ||
| 191 | {"label":"Right", "x":15, "y":5} | ||
| 192 | ] | ||
| 193 | } | ||
| 194 | } | ||
| 195 | } | ||
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 0000000000..527b041929 --- /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 0000000000..5f9e635dfe --- /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 0000000000..132c05c4a6 --- /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 0000000000..517baa5726 --- /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 0000000000..e69de29bb2 --- /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 0000000000..443b3016d7 --- /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 0000000000..57004e56b5 --- /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 | } | ||
