diff options
| author | npspears <40127181+npspears@users.noreply.github.com> | 2020-12-31 09:00:08 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-31 10:00:08 -0500 |
| commit | 4ef4347543da5dcd93f342b2728840c6e0407906 (patch) | |
| tree | a040904f77e7551d22eb98d984d211480b127396 /keyboards/quark | |
| parent | 028d2c91dc5175904ee57917e2a90028569e0f8f (diff) | |
| download | qmk_firmware-4ef4347543da5dcd93f342b2728840c6e0407906.tar.gz qmk_firmware-4ef4347543da5dcd93f342b2728840c6e0407906.zip | |
Quark PCB for Planck/Preonic (#11206)
* Quark PCB for Planck/Preonic
Quark provides alternate bottom row layouts for both the OLKB Planck and Preonic
* Rename rules.mk.txt to rules.mk
* added Tapping Toggle
removed tapping toggle from keymap level
* Update info.json
took out } as requested
* update config.h
added GPL2+ license and #pragma once
* update info.json again
cleaned up syntax
* Apply suggestions from code review
Co-authored-by: Drashna Jaelre <drashna@live.com>
* update config.h
added GPL2+ License
* Update info.json - and again
fixed it - oops
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/quark')
21 files changed, 899 insertions, 0 deletions
diff --git a/keyboards/quark/config.h b/keyboards/quark/config.h new file mode 100644 index 000000000..084891b2c --- /dev/null +++ b/keyboards/quark/config.h | |||
| @@ -0,0 +1,75 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Modified by Nasp for the Quark | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | #include "config_common.h" | ||
| 20 | |||
| 21 | /* USB Device descriptor parameter */ | ||
| 22 | #define VENDOR_ID 0x7070 | ||
| 23 | #define PRODUCT_ID 0x5340 | ||
| 24 | #define DEVICE_VER 0x0001 | ||
| 25 | #define MANUFACTURER Nasp | ||
| 26 | #define PRODUCT QUARK | ||
| 27 | |||
| 28 | /* key matrix size */ | ||
| 29 | #define MATRIX_ROWS 5 | ||
| 30 | #define MATRIX_COLS 12 | ||
| 31 | |||
| 32 | /* key matrix pins */ | ||
| 33 | #define MATRIX_ROW_PINS { C5, C4, C6, C7, B7 } | ||
| 34 | #define MATRIX_COL_PINS { B4, B5, B6, B3, C2, B2, B1, D2, D3, D4, D5, D6 } | ||
| 35 | #define UNUSED_PINS | ||
| 36 | |||
| 37 | /* COL2ROW or ROW2COL */ | ||
| 38 | #define DIODE_DIRECTION COL2ROW | ||
| 39 | |||
| 40 | /* Set 0 if debouncing isn't needed */ | ||
| 41 | #define DEBOUNCE 5 | ||
| 42 | |||
| 43 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 44 | #define LOCKING_SUPPORT_ENABLE | ||
| 45 | |||
| 46 | /* Locking resynchronize hack */ | ||
| 47 | #define LOCKING_RESYNC_ENABLE | ||
| 48 | |||
| 49 | /* | ||
| 50 | * Feature disable options | ||
| 51 | * These options are also useful to firmware size reduction. | ||
| 52 | */ | ||
| 53 | |||
| 54 | /* disable debug print */ | ||
| 55 | //#define NO_DEBUG | ||
| 56 | |||
| 57 | /* disable print */ | ||
| 58 | //#define NO_PRINT | ||
| 59 | |||
| 60 | /* disable action features */ | ||
| 61 | //#define NO_ACTION_LAYER | ||
| 62 | //#define NO_ACTION_TAPPING | ||
| 63 | //#define NO_ACTION_ONESHOT | ||
| 64 | //#define NO_ACTION_MACRO | ||
| 65 | //#define NO_ACTION_FUNCTION | ||
| 66 | |||
| 67 | // ws2812 options | ||
| 68 | #define RGB_DI_PIN D0 // pin the DI on the ws2812 is hooked-up to | ||
| 69 | #define RGBLIGHT_ANIMATIONS // run RGB animations | ||
| 70 | #define RGBLED_NUM 14 // number of LEDs | ||
| 71 | #define RGBLIGHT_HUE_STEP 12 // units to step when in/decreasing hue | ||
| 72 | #define RGBLIGHT_SAT_STEP 12 // units to step when in/decresing saturation | ||
| 73 | #define RGBLIGHT_VAL_STEP 12 // units to step when in/decreasing value (brightness) | ||
| 74 | |||
| 75 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/info.json b/keyboards/quark/info.json new file mode 100644 index 000000000..1687a1240 --- /dev/null +++ b/keyboards/quark/info.json | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "QUARK", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "nasp", | ||
| 5 | "width": 12, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_5x12_2x225": { | ||
| 9 | "layout": | ||
| 10 | [{"label":"_", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"+", "x":11, "y":0}, {"label":"Tab", "x":0, "y":1}, {"label":"Q", "x":1, "y":1}, {"label":"W", "x":2, "y":1}, {"label":"E", "x":3, "y":1}, {"label":"R", "x":4, "y":1}, {"label":"T", "x":5, "y":1}, {"label":"Y", "x":6, "y":1}, {"label":"U", "x":7, "y":1}, {"label":"I", "x":8, "y":1}, {"label":"O", "x":9, "y":1}, {"label":"P", "x":10, "y":1}, {"label":"Back Space", "x":11, "y":1}, {"label":"Esc", "x":0, "y":2}, {"label":"A", "x":1, "y":2}, {"label":"S", "x":2, "y":2}, {"label":"D", "x":3, "y":2}, {"label":"F", "x":4, "y":2}, {"label":"G", "x":5, "y":2}, {"label":"H", "x":6, "y":2}, {"label":"J", "x":7, "y":2}, {"label":"K", "x":8, "y":2}, {"label":"L", "x":9, "y":2}, {"label":";", "x":10, "y":2}, {"label":"'", "x":11, "y":2}, {"label":"Shift", "x":0, "y":3}, {"label":"Z", "x":1, "y":3}, {"label":"X", "x":2, "y":3}, {"label":"C", "x":3, "y":3}, {"label":"V", "x":4, "y":3}, {"label":"B", "x":5, "y":3}, {"label":"N", "x":6, "y":3}, {"label":"M", "x":7, "y":3}, {"label":",", "x":8, "y":3}, {"label":".", "x":9, "y":3}, {"label":"/", "x":10, "y":3}, {"label":"Return", "x":11, "y":3}, {"label":"CTRL", "x":0, "y":4, "w":1.25}, {"label":"WIN", "x":1.25, "y":4, "w":1.25}, {"label":"ALT", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":2.25}, {"x":6, "y":4, "w":2.25}, {"label":"ALT", "x":8.25, "y":4, "w":1.25}, {"label":"MENU", "x":9.5, "y":4, "w":1.25}, {"label":"CTRL", "x":10.75, "y":4, "w":1.25}] | ||
| 11 | }, | ||
| 12 | "LAYOUT_5x12_2x3": { | ||
| 13 | "layout": | ||
| 14 | [{"label":"_", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"+", "x":11, "y":0}, {"label":"Tab", "x":0, "y":1}, {"label":"Q", "x":1, "y":1}, {"label":"W", "x":2, "y":1}, {"label":"E", "x":3, "y":1}, {"label":"R", "x":4, "y":1}, {"label":"T", "x":5, "y":1}, {"label":"Y", "x":6, "y":1}, {"label":"U", "x":7, "y":1}, {"label":"I", "x":8, "y":1}, {"label":"O", "x":9, "y":1}, {"label":"P", "x":10, "y":1}, {"label":"Back Space", "x":11, "y":1}, {"label":"Esc", "x":0, "y":2}, {"label":"A", "x":1, "y":2}, {"label":"S", "x":2, "y":2}, {"label":"D", "x":3, "y":2}, {"label":"F", "x":4, "y":2}, {"label":"G", "x":5, "y":2}, {"label":"H", "x":6, "y":2}, {"label":"J", "x":7, "y":2}, {"label":"K", "x":8, "y":2}, {"label":"L", "x":9, "y":2}, {"label":";", "x":10, "y":2}, {"label":"'", "x":11, "y":2}, {"label":"Shift", "x":0, "y":3}, {"label":"Z", "x":1, "y":3}, {"label":"X", "x":2, "y":3}, {"label":"C", "x":3, "y":3}, {"label":"V", "x":4, "y":3}, {"label":"B", "x":5, "y":3}, {"label":"N", "x":6, "y":3}, {"label":"M", "x":7, "y":3}, {"label":",", "x":8, "y":3}, {"label":".", "x":9, "y":3}, {"label":"/", "x":10, "y":3}, {"label":"Return", "x":11, "y":3}, {"label":"CTRL", "x":0, "y":4, "w":1.5}, {"label":"ALT", "x":1.5, "y":4, "w":1.5}, {"x":3, "y":4, "w":3}, {"x":6, "y":4, "w":3}, {"label":"ALT", "x":9, "y":4, "w":1.5}, {"label":"MENU", "x":10.5, "y":4, "w":1.5}] | ||
| 15 | }, | ||
| 16 | "LAYOUT_4x12_Grid": { | ||
| 17 | "layout": | ||
| 18 | [{"label":"Tab", "x":0, "y":0}, {"label":"Q", "x":1, "y":0}, {"label":"W", "x":2, "y":0}, {"label":"E", "x":3, "y":0}, {"label":"R", "x":4, "y":0}, {"label":"T", "x":5, "y":0}, {"label":"Y", "x":6, "y":0}, {"label":"U", "x":7, "y":0}, {"label":"I", "x":8, "y":0}, {"label":"O", "x":9, "y":0}, {"label":"P", "x":10, "y":0}, {"label":"Back Space", "x":11, "y":0}, {"label":"Esc", "x":0, "y":1}, {"label":"A", "x":1, "y":1}, {"label":"S", "x":2, "y":1}, {"label":"D", "x":3, "y":1}, {"label":"F", "x":4, "y":1}, {"label":"G", "x":5, "y":1}, {"label":"H", "x":6, "y":1}, {"label":"J", "x":7, "y":1}, {"label":"K", "x":8, "y":1}, {"label":"L", "x":9, "y":1}, {"label":";", "x":10, "y":1}, {"label":"'", "x":11, "y":1}, {"label":"Shift", "x":0, "y":2}, {"label":"Z", "x":1, "y":2}, {"label":"X", "x":2, "y":2}, {"label":"C", "x":3, "y":2}, {"label":"V", "x":4, "y":2}, {"label":"B", "x":5, "y":2}, {"label":"N", "x":6, "y":2}, {"label":"M", "x":7, "y":2}, {"label":",", "x":8, "y":2}, {"label":".", "x":9, "y":2}, {"label":"/", "x":10, "y":2}, {"label":"Return", "x":11, "y":2}, {"label":"CTRL", "x":0, "y":3}, {"label":"WIN", "x":1, "y":3}, {"label":"MENU", "x":2, "y":3}, {"label":"ALT", "x":3, "y":3}, {"label":"⇓", "x":4, "y":3}, {"x":5, "y":3}, {"x":6, "y":3}, {"label":"⇑", "x":7, "y":3}, {"label":"LEFT", "x":8, "y":3}, {"label":"DOWN", "x":9, "y":3}, {"label":"UP", "x":10, "y":3}, {"label":"RIGHT", "x":11, "y":3}] | ||
| 19 | }, | ||
| 20 | "LAYOUT_4x12_MIT": { | ||
| 21 | "layout": | ||
| 22 | [{"label":"Tab", "x":0, "y":0}, {"label":"Q", "x":1, "y":0}, {"label":"W", "x":2, "y":0}, {"label":"E", "x":3, "y":0}, {"label":"R", "x":4, "y":0}, {"label":"T", "x":5, "y":0}, {"label":"Y", "x":6, "y":0}, {"label":"U", "x":7, "y":0}, {"label":"I", "x":8, "y":0}, {"label":"O", "x":9, "y":0}, {"label":"P", "x":10, "y":0}, {"label":"Back Space", "x":11, "y":0}, {"label":"Esc", "x":0, "y":1}, {"label":"A", "x":1, "y":1}, {"label":"S", "x":2, "y":1}, {"label":"D", "x":3, "y":1}, {"label":"F", "x":4, "y":1}, {"label":"G", "x":5, "y":1}, {"label":"H", "x":6, "y":1}, {"label":"J", "x":7, "y":1}, {"label":"K", "x":8, "y":1}, {"label":"L", "x":9, "y":1}, {"label":";", "x":10, "y":1}, {"label":"'", "x":11, "y":1}, {"label":"Shift", "x":0, "y":2}, {"label":"Z", "x":1, "y":2}, {"label":"X", "x":2, "y":2}, {"label":"C", "x":3, "y":2}, {"label":"V", "x":4, "y":2}, {"label":"B", "x":5, "y":2}, {"label":"N", "x":6, "y":2}, {"label":"M", "x":7, "y":2}, {"label":",", "x":8, "y":2}, {"label":".", "x":9, "y":2}, {"label":"/", "x":10, "y":2}, {"label":"Return", "x":11, "y":2}, {"label":"CTRL", "x":0, "y":3}, {"label":"WIN", "x":1, "y":3}, {"label":"MENU", "x":2, "y":3}, {"label":"ALT", "x":3, "y":3}, {"label":"⇓", "x":4, "y":3}, {"x":5, "y":3, "w":2}, {"label":"⇑", "x":7, "y":3}, {"label":"LEFT", "x":8, "y":3}, {"label":"DOWN", "x":9, "y":3}, {"label":"UP", "x":10, "y":3}, {"label":"RIGHT", "x":11, "y":3}] | ||
| 23 | }, | ||
| 24 | "LAYOUT_4x12_2x225": { | ||
| 25 | "layout": | ||
| 26 | [{"label":"Tab", "x":0, "y":0}, {"label":"Q", "x":1, "y":0}, {"label":"W", "x":2, "y":0}, {"label":"E", "x":3, "y":0}, {"label":"R", "x":4, "y":0}, {"label":"T", "x":5, "y":0}, {"label":"Y", "x":6, "y":0}, {"label":"U", "x":7, "y":0}, {"label":"I", "x":8, "y":0}, {"label":"O", "x":9, "y":0}, {"label":"P", "x":10, "y":0}, {"label":"Back Space", "x":11, "y":0}, {"label":"Esc", "x":0, "y":1}, {"label":"A", "x":1, "y":1}, {"label":"S", "x":2, "y":1}, {"label":"D", "x":3, "y":1}, {"label":"F", "x":4, "y":1}, {"label":"G", "x":5, "y":1}, {"label":"H", "x":6, "y":1}, {"label":"J", "x":7, "y":1}, {"label":"K", "x":8, "y":1}, {"label":"L", "x":9, "y":1}, {"label":";", "x":10, "y":1}, {"label":"'", "x":11, "y":1}, {"label":"Shift", "x":0, "y":2}, {"label":"Z", "x":1, "y":2}, {"label":"X", "x":2, "y":2}, {"label":"C", "x":3, "y":2}, {"label":"V", "x":4, "y":2}, {"label":"B", "x":5, "y":2}, {"label":"N", "x":6, "y":2}, {"label":"M", "x":7, "y":2}, {"label":",", "x":8, "y":2}, {"label":".", "x":9, "y":2}, {"label":"/", "x":10, "y":2}, {"label":"Return", "x":11, "y":2}, {"label":"CTRL", "x":0, "y":3, "w":1.25}, {"label":"WIN", "x":1.25, "y":3, "w":1.25}, {"label":"ALT", "x":2.5, "y":3, "w":1.25}, {"x":3.75, "y":3, "w":2.25}, {"x":6, "y":3, "w":2.25}, {"label":"ALT", "x":8.25, "y":3, "w":1.25}, {"label":"MENU", "x":9.5, "y":3, "w":1.25}, {"label":"CTRL", "x":10.75, "y":3, "w":1.25}] | ||
| 27 | }, | ||
| 28 | "LAYOUT_4x12_2x3": { | ||
| 29 | "layout": | ||
| 30 | [{"label":"Tab", "x":0, "y":0}, {"label":"Q", "x":1, "y":0}, {"label":"W", "x":2, "y":0}, {"label":"E", "x":3, "y":0}, {"label":"R", "x":4, "y":0}, {"label":"T", "x":5, "y":0}, {"label":"Y", "x":6, "y":0}, {"label":"U", "x":7, "y":0}, {"label":"I", "x":8, "y":0}, {"label":"O", "x":9, "y":0}, {"label":"P", "x":10, "y":0}, {"label":"Back Space", "x":11, "y":0}, {"label":"Esc", "x":0, "y":1}, {"label":"A", "x":1, "y":1}, {"label":"S", "x":2, "y":1}, {"label":"D", "x":3, "y":1}, {"label":"F", "x":4, "y":1}, {"label":"G", "x":5, "y":1}, {"label":"H", "x":6, "y":1}, {"label":"J", "x":7, "y":1}, {"label":"K", "x":8, "y":1}, {"label":"L", "x":9, "y":1}, {"label":";", "x":10, "y":1}, {"label":"'", "x":11, "y":1}, {"label":"Shift", "x":0, "y":2}, {"label":"Z", "x":1, "y":2}, {"label":"X", "x":2, "y":2}, {"label":"C", "x":3, "y":2}, {"label":"V", "x":4, "y":2}, {"label":"B", "x":5, "y":2}, {"label":"N", "x":6, "y":2}, {"label":"M", "x":7, "y":2}, {"label":",", "x":8, "y":2}, {"label":".", "x":9, "y":2}, {"label":"/", "x":10, "y":2}, {"label":"Return", "x":11, "y":2}, {"label":"CTRL", "x":0, "y":3}, {"label":"WIN", "x":1, "y":3}, {"label":"ALT", "x":2, "y":3}, {"x":3, "y":3, "w":3}, {"x":6, "y":3, "w":3}, {"label":"ALT", "x":9, "y":3}, {"label":"MENU", "x":10, "y":3}, {"label":"CTRL", "x":11, "y":3}] | ||
| 31 | } | ||
| 32 | } | ||
| 33 | } | ||
diff --git a/keyboards/quark/keymaps/default/config.h b/keyboards/quark/keymaps/default/config.h new file mode 100644 index 000000000..311c729c5 --- /dev/null +++ b/keyboards/quark/keymaps/default/config.h | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | |||
| 2 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/keymaps/default/keymap.c b/keyboards/quark/keymaps/default/keymap.c new file mode 100644 index 000000000..87e03fa18 --- /dev/null +++ b/keyboards/quark/keymaps/default/keymap.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /* Copyright 2020 Nathan Spears | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | // Defines for task manager and such | ||
| 19 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 20 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 21 | |||
| 22 | |||
| 23 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 24 | |||
| 25 | /* [0] | ||
| 26 | * ,-----------------------------------------------------------------------------------------. | ||
| 27 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 28 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 29 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | ||
| 30 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 31 | * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 32 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 33 | * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | | ||
| 34 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 35 | * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS | | ||
| 36 | * `-----------------------------------------------------------------------------------------' | ||
| 37 | */ | ||
| 38 | [0] = LAYOUT_5x12_2x225( \ | ||
| 39 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 40 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 41 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 42 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 43 | KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS | ||
| 44 | ), | ||
| 45 | |||
| 46 | /* [1] | ||
| 47 | * ,---------------------------------------------------------------------------------------. | ||
| 48 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 49 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 50 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 51 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 52 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 53 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 54 | * | | | | | | | | + | = | | | | | ||
| 55 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 56 | * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | | | ||
| 57 | * `---------------------------------------------------------------------------------------' | ||
| 58 | */ | ||
| 59 | [1] = LAYOUT_5x12_2x225( \ | ||
| 60 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 61 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 62 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 63 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 64 | KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______ | ||
| 65 | ), | ||
| 66 | |||
| 67 | /* [2] | ||
| 68 | * ,---------------------------------------------------------------------------------------. | ||
| 69 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 70 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 71 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 72 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 73 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 74 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 75 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 76 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 77 | * | RESET | | | | | | | | | ||
| 78 | * `---------------------------------------------------------------------------------------' | ||
| 79 | */ | ||
| 80 | [2] = LAYOUT_5x12_2x225( \ | ||
| 81 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 82 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 83 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 84 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 85 | RESET, _______, _______, _______, _______, _______, _______, _______ | ||
| 86 | ), | ||
| 87 | |||
| 88 | }; | ||
diff --git a/keyboards/quark/keymaps/default/readme.md b/keyboards/quark/keymaps/default/readme.md new file mode 100644 index 000000000..1e0d8e25c --- /dev/null +++ b/keyboards/quark/keymaps/default/readme.md | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | # The Default Quark Layout | ||
| 2 | |||
diff --git a/keyboards/quark/keymaps/default_4x12_2x225/config.h b/keyboards/quark/keymaps/default_4x12_2x225/config.h new file mode 100644 index 000000000..311c729c5 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_2x225/config.h | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | |||
| 2 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/keymaps/default_4x12_2x225/keymap.c b/keyboards/quark/keymaps/default_4x12_2x225/keymap.c new file mode 100644 index 000000000..d94d62026 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_2x225/keymap.c | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Modified by Nasp for the Quark | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | // Defines for task manager and such | ||
| 20 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 21 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 22 | |||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | |||
| 26 | /* [0] | ||
| 27 | * ,-----------------------------------------------------------------------------------------. | ||
| 28 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 29 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | ||
| 30 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 31 | * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 32 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 33 | * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | | ||
| 34 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 35 | * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS | | ||
| 36 | * `-----------------------------------------------------------------------------------------' | ||
| 37 | */ | ||
| 38 | [0] = LAYOUT_4x12_2x225( \ | ||
| 39 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 40 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 41 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 42 | KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS | ||
| 43 | ), | ||
| 44 | |||
| 45 | /* [1] | ||
| 46 | * ,---------------------------------------------------------------------------------------. | ||
| 47 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 48 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 49 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 50 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 51 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 52 | * | | | | | | | | + | = | | | | | ||
| 53 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 54 | * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | | | ||
| 55 | * `---------------------------------------------------------------------------------------' | ||
| 56 | */ | ||
| 57 | [1] = LAYOUT_4x12_2x225( \ | ||
| 58 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 59 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 60 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 61 | KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______ | ||
| 62 | ), | ||
| 63 | |||
| 64 | /* [2] | ||
| 65 | * ,---------------------------------------------------------------------------------------. | ||
| 66 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 67 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 68 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 69 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 70 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 71 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 72 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 73 | * | RESET | | | | | | | | | ||
| 74 | * `---------------------------------------------------------------------------------------' | ||
| 75 | */ | ||
| 76 | [2] = LAYOUT_4x12_2x225( \ | ||
| 77 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 78 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 79 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 80 | RESET, _______, _______, _______, _______, _______, _______, _______ | ||
| 81 | ), | ||
| 82 | |||
| 83 | }; | ||
diff --git a/keyboards/quark/keymaps/default_4x12_2x3/config.h b/keyboards/quark/keymaps/default_4x12_2x3/config.h new file mode 100644 index 000000000..311c729c5 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_2x3/config.h | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | |||
| 2 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/keymaps/default_4x12_2x3/keymap.c b/keyboards/quark/keymaps/default_4x12_2x3/keymap.c new file mode 100644 index 000000000..938fb6824 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_2x3/keymap.c | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Modified by Nasp for the Quark | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | // Defines for task manager and such | ||
| 20 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 21 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 22 | |||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | |||
| 26 | /* [0] | ||
| 27 | * ,-----------------------------------------------------------------------------------------. | ||
| 28 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 29 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | ||
| 30 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 31 | * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 32 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 33 | * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | | ||
| 34 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 35 | * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS | | ||
| 36 | * `-----------------------------------------------------------------------------------------' | ||
| 37 | */ | ||
| 38 | [0] = LAYOUT_4x12_2x3( \ | ||
| 39 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 40 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 41 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 42 | KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS | ||
| 43 | ), | ||
| 44 | |||
| 45 | /* [1] | ||
| 46 | * ,---------------------------------------------------------------------------------------. | ||
| 47 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 48 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 49 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 50 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 51 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 52 | * | | | | | | | | + | = | | | | | ||
| 53 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 54 | * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | | | ||
| 55 | * `---------------------------------------------------------------------------------------' | ||
| 56 | */ | ||
| 57 | [1] = LAYOUT_4x12_2x3( \ | ||
| 58 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 59 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 60 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 61 | KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______ | ||
| 62 | ), | ||
| 63 | |||
| 64 | /* [2] | ||
| 65 | * ,---------------------------------------------------------------------------------------. | ||
| 66 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 67 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 68 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 69 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 70 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 71 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 72 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 73 | * | RESET | | | | | | | | | ||
| 74 | * `---------------------------------------------------------------------------------------' | ||
| 75 | */ | ||
| 76 | [2] = LAYOUT_4x12_2x3( \ | ||
| 77 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 78 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 79 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 80 | RESET, _______, _______, _______, _______, _______, _______, _______ | ||
| 81 | ), | ||
| 82 | |||
| 83 | }; | ||
diff --git a/keyboards/quark/keymaps/default_4x12_grid/config.h b/keyboards/quark/keymaps/default_4x12_grid/config.h new file mode 100644 index 000000000..311c729c5 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_grid/config.h | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | |||
| 2 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/keymaps/default_4x12_grid/keymap.c b/keyboards/quark/keymaps/default_4x12_grid/keymap.c new file mode 100644 index 000000000..3eb0e8f86 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_grid/keymap.c | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Modified by Nasp for the Quark | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | // Defines for task manager and such | ||
| 20 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 21 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 22 | |||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | |||
| 26 | /* [0] | ||
| 27 | * ,-----------------------------------------------------------------------------------------. | ||
| 28 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 29 | * | TAB | Q | W | E | R | T | Y | U | I | O | P | DEL | | ||
| 30 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 31 | * | CTRL&ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 32 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 33 | * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENTER | | ||
| 34 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 35 | * | PRINT | Ctrl | ALT | GUI |LOWER |SPACE |SPACE|RAISE | LEFT | DOWN | UP |RIGHT | | ||
| 36 | * `-----------------------------------------------------------------------------------------' | ||
| 37 | */ | ||
| 38 | [0] = LAYOUT_ortho_4x12( \ | ||
| 39 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 40 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 41 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 42 | KC_PSCR, KC_LCTL, KC_LALT, KC_LGUI, TT(1), KC_SPC, KC_SPC, TT(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
| 43 | ), | ||
| 44 | |||
| 45 | /* [1] | ||
| 46 | * ,---------------------------------------------------------------------------------------. | ||
| 47 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 48 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 49 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 50 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 51 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 52 | * | | | | | | | | + | = | | | | | ||
| 53 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 54 | * | | | ESC |CTRL-ALT-DEL|TASK| | | | | | '|' | ` | | | ||
| 55 | * `---------------------------------------------------------------------------------------' | ||
| 56 | */ | ||
| 57 | [1] = LAYOUT_ortho_4x12( \ | ||
| 58 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 59 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 60 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 61 | _______, KC_ESC, CALTDEL, TSKMGR, _______, _______, _______, _______, _______, KC_NUBS, KC_GRV, _______ | ||
| 62 | ), | ||
| 63 | |||
| 64 | /* [2] | ||
| 65 | * ,---------------------------------------------------------------------------------------. | ||
| 66 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 67 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 68 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 69 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 70 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 71 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 72 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 73 | * |RESET | | | | | | | | | | | | | ||
| 74 | * `---------------------------------------------------------------------------------------' | ||
| 75 | */ | ||
| 76 | [2] = LAYOUT_ortho_4x12( \ | ||
| 77 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 78 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 79 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 80 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 81 | ), | ||
| 82 | |||
| 83 | }; | ||
diff --git a/keyboards/quark/keymaps/default_4x12_mit/config.h b/keyboards/quark/keymaps/default_4x12_mit/config.h new file mode 100644 index 000000000..2e3dbdb68 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_mit/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* Copyright 2020 Nathan_Spears | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/keymaps/default_4x12_mit/keymap.c b/keyboards/quark/keymaps/default_4x12_mit/keymap.c new file mode 100644 index 000000000..db2042e63 --- /dev/null +++ b/keyboards/quark/keymaps/default_4x12_mit/keymap.c | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Modified by Nasp for the Quark | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | // Defines for task manager and such | ||
| 20 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 21 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 22 | |||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | |||
| 26 | /* [0] | ||
| 27 | * ,-----------------------------------------------------------------------------------------. | ||
| 28 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 29 | * | TAB | Q | W | E | R | T | Y | U | I | O | P | DEL | | ||
| 30 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 31 | * | CTRL&ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 32 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 33 | * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENTER | | ||
| 34 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 35 | * | PRINT | Ctrl | ALT | GUI |LOWER | SPACE |RAISE | LEFT | DOWN | UP |RIGHT | | ||
| 36 | * `-----------------------------------------------------------------------------------------' | ||
| 37 | */ | ||
| 38 | [0] = LAYOUT_4x12_MIT( \ | ||
| 39 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 40 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 41 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 42 | KC_PSCR, KC_LCTL, KC_LALT, KC_LGUI, TT(1), KC_SPC, TT(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
| 43 | ), | ||
| 44 | |||
| 45 | /* [1] | ||
| 46 | * ,---------------------------------------------------------------------------------------. | ||
| 47 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 48 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 49 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 50 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 51 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 52 | * | | | | | | | | + | = | | | | | ||
| 53 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 54 | * | | | ESC |CTRL-ALT-DEL|TASK| | | | | '|' | ` | | | ||
| 55 | * `---------------------------------------------------------------------------------------' | ||
| 56 | */ | ||
| 57 | [1] = LAYOUT_4x12_MIT( \ | ||
| 58 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 59 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 60 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 61 | _______, KC_ESC, CALTDEL, TSKMGR, _______, _______, _______, _______, KC_NUBS, KC_GRV, _______ | ||
| 62 | ), | ||
| 63 | |||
| 64 | /* [2] | ||
| 65 | * ,---------------------------------------------------------------------------------------. | ||
| 66 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 67 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 68 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 69 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 70 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 71 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 72 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 73 | * |RESET | | | | | | | | | | | | ||
| 74 | * `---------------------------------------------------------------------------------------' | ||
| 75 | */ | ||
| 76 | [2] = LAYOUT_4x12_MIT( \ | ||
| 77 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 78 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 79 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 80 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 81 | ), | ||
| 82 | |||
| 83 | }; | ||
diff --git a/keyboards/quark/keymaps/default_5x12_2x3/config.h b/keyboards/quark/keymaps/default_5x12_2x3/config.h new file mode 100644 index 000000000..ef97c811f --- /dev/null +++ b/keyboards/quark/keymaps/default_5x12_2x3/config.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* Copyright 2020 Nathan Spears | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | |||
| 18 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/quark/keymaps/default_5x12_2x3/keymap.c b/keyboards/quark/keymaps/default_5x12_2x3/keymap.c new file mode 100644 index 000000000..8b3cf0311 --- /dev/null +++ b/keyboards/quark/keymaps/default_5x12_2x3/keymap.c | |||
| @@ -0,0 +1,89 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Modified by Nasp for the Quark | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | // Defines for task manager and such | ||
| 20 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 21 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 22 | |||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | |||
| 26 | /* [0] | ||
| 27 | * ,-----------------------------------------------------------------------------------------. | ||
| 28 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 29 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 30 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | ||
| 31 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 32 | * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 33 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 34 | * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | | ||
| 35 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 36 | * | OS | Alt | Layer | Space & Layer | [ | ] | | ||
| 37 | * `-----------------------------------------------------------------------------------------' | ||
| 38 | */ | ||
| 39 | [0] = LAYOUT_5x12_2x3( \ | ||
| 40 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 41 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 42 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 44 | KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC | ||
| 45 | ), | ||
| 46 | |||
| 47 | /* [1] | ||
| 48 | * ,---------------------------------------------------------------------------------------. | ||
| 49 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 50 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 51 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 52 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 53 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 54 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 55 | * | | | | | | | | + | = | | | | | ||
| 56 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 57 | * | ESC | CTRL-ALT-DEL | | | '|' | ` | | ||
| 58 | * `---------------------------------------------------------------------------------------' | ||
| 59 | */ | ||
| 60 | [1] = LAYOUT_5x12_2x3( \ | ||
| 61 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 62 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 63 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 64 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 65 | KC_ESC, CALTDEL, _______, _______, KC_NUBS, KC_GRV | ||
| 66 | ), | ||
| 67 | |||
| 68 | /* [2] | ||
| 69 | * ,---------------------------------------------------------------------------------------. | ||
| 70 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 71 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 72 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 73 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 74 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 75 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 76 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 77 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 78 | * | RESET | | | | | | | ||
| 79 | * `---------------------------------------------------------------------------------------' | ||
| 80 | */ | ||
| 81 | [2] = LAYOUT_5x12_2x3( \ | ||
| 82 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 83 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 84 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 85 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 86 | RESET, _______, _______, _______, _______, _______ | ||
| 87 | ), | ||
| 88 | |||
| 89 | }; | ||
diff --git a/keyboards/quark/keymaps/via/keymap.c b/keyboards/quark/keymaps/via/keymap.c new file mode 100644 index 000000000..87e03fa18 --- /dev/null +++ b/keyboards/quark/keymaps/via/keymap.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /* Copyright 2020 Nathan Spears | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | // Defines for task manager and such | ||
| 19 | #define CALTDEL LCTL(LALT(KC_DEL)) | ||
| 20 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 21 | |||
| 22 | |||
| 23 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 24 | |||
| 25 | /* [0] | ||
| 26 | * ,-----------------------------------------------------------------------------------------. | ||
| 27 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 28 | * |------------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 29 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | ||
| 30 | * |------------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 31 | * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 32 | * |------------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 33 | * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | | ||
| 34 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| | ||
| 35 | * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS | | ||
| 36 | * `-----------------------------------------------------------------------------------------' | ||
| 37 | */ | ||
| 38 | [0] = LAYOUT_5x12_2x225( \ | ||
| 39 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 40 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 41 | CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 42 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
| 43 | KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS | ||
| 44 | ), | ||
| 45 | |||
| 46 | /* [1] | ||
| 47 | * ,---------------------------------------------------------------------------------------. | ||
| 48 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 49 | * |------------+------+------+------+------+------+------+------+------+------+------+----| | ||
| 50 | * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC | | ||
| 51 | * |------------+------+------+------+------+-------------+------+------+------+------+----| | ||
| 52 | * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / | | ||
| 53 | * |------------+------+------+------+------+------|------+------+------+------+------+----| | ||
| 54 | * | | | | | | | | + | = | | | | | ||
| 55 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----| | ||
| 56 | * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | | | ||
| 57 | * `---------------------------------------------------------------------------------------' | ||
| 58 | */ | ||
| 59 | [1] = LAYOUT_5x12_2x225( \ | ||
| 60 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 61 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 62 | KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS, | ||
| 63 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______, | ||
| 64 | KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______ | ||
| 65 | ), | ||
| 66 | |||
| 67 | /* [2] | ||
| 68 | * ,---------------------------------------------------------------------------------------. | ||
| 69 | * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||
| 70 | * |------------+------+------+------+------+------+------+------+------+------+------+---| | ||
| 71 | * | | | | UP | | | | _ | | [ | ] | | | ||
| 72 | * |------------+------+------+------+------+-------------+------+------+------+------+---| | ||
| 73 | * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | | | ||
| 74 | * |------------+------+------+------+------+-----+-----+------+------+------+------+-----| | ||
| 75 | * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 76 | * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---| | ||
| 77 | * | RESET | | | | | | | | | ||
| 78 | * `---------------------------------------------------------------------------------------' | ||
| 79 | */ | ||
| 80 | [2] = LAYOUT_5x12_2x225( \ | ||
| 81 | KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
| 82 | _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______, | ||
| 83 | _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______, | ||
| 84 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 85 | RESET, _______, _______, _______, _______, _______, _______, _______ | ||
| 86 | ), | ||
| 87 | |||
| 88 | }; | ||
diff --git a/keyboards/quark/keymaps/via/rules.mk b/keyboards/quark/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/quark/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/quark/quark.c b/keyboards/quark/quark.c new file mode 100644 index 000000000..6b962a893 --- /dev/null +++ b/keyboards/quark/quark.c | |||
| @@ -0,0 +1 @@ | |||
| #include "quark.h" | |||
diff --git a/keyboards/quark/quark.h b/keyboards/quark/quark.h new file mode 100644 index 000000000..a81b062d0 --- /dev/null +++ b/keyboards/quark/quark.h | |||
| @@ -0,0 +1,106 @@ | |||
| 1 | /* Copyright 2020 Nathan Spears | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | #include "quantum.h" | ||
| 21 | |||
| 22 | #define LAYOUT_5x12_2x225( \ | ||
| 23 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \ | ||
| 24 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \ | ||
| 25 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \ | ||
| 26 | k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, \ | ||
| 27 | k400, k401, k402, k403, k404, k405, k406, k407 \ | ||
| 28 | ) \ | ||
| 29 | { \ | ||
| 30 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \ | ||
| 31 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \ | ||
| 32 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \ | ||
| 33 | { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311 }, \ | ||
| 34 | { k400, k401, KC_NO, k402, k403, KC_NO, KC_NO, k404, k405, KC_NO, k406, k407 } \ | ||
| 35 | } | ||
| 36 | |||
| 37 | #define LAYOUT_5x12_2x3( \ | ||
| 38 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \ | ||
| 39 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \ | ||
| 40 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \ | ||
| 41 | k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, \ | ||
| 42 | k400, k401, k402, k403, k404, k405 \ | ||
| 43 | ) \ | ||
| 44 | { \ | ||
| 45 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \ | ||
| 46 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \ | ||
| 47 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \ | ||
| 48 | { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311 }, \ | ||
| 49 | { k400, k401, KC_NO, KC_NO, k402, KC_NO, KC_NO, k403, KC_NO, KC_NO, k404, k405 } \ | ||
| 50 | } | ||
| 51 | |||
| 52 | #define LAYOUT_ortho_4x12( \ | ||
| 53 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \ | ||
| 54 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \ | ||
| 55 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \ | ||
| 56 | k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311 \ | ||
| 57 | ) \ | ||
| 58 | { \ | ||
| 59 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \ | ||
| 60 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \ | ||
| 61 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \ | ||
| 62 | { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311 }, \ | ||
| 63 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO} \ | ||
| 64 | } | ||
| 65 | |||
| 66 | #define LAYOUT_4x12_MIT( \ | ||
| 67 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \ | ||
| 68 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \ | ||
| 69 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \ | ||
| 70 | k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310 \ | ||
| 71 | ) \ | ||
| 72 | { \ | ||
| 73 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \ | ||
| 74 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \ | ||
| 75 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \ | ||
| 76 | { k300, k301, k302, k303, k304, k305, KC_NO, k306, k307, k308, k309, k310 }, \ | ||
| 77 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO} \ | ||
| 78 | } | ||
| 79 | |||
| 80 | #define LAYOUT_4x12_2x225( \ | ||
| 81 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \ | ||
| 82 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \ | ||
| 83 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \ | ||
| 84 | k300, k301, k302, k303, k304, k305, k306, k307 \ | ||
| 85 | ) \ | ||
| 86 | { \ | ||
| 87 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \ | ||
| 88 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \ | ||
| 89 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \ | ||
| 90 | { k300, k301, KC_NO, k302, k303, KC_NO, KC_NO, k304, k305, KC_NO, k306, k307 }, \ | ||
| 91 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO} \ | ||
| 92 | } | ||
| 93 | |||
| 94 | #define LAYOUT_4x12_2x3( \ | ||
| 95 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \ | ||
| 96 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \ | ||
| 97 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \ | ||
| 98 | k300, k301, k302, k303, k304, k305, k306, k307 \ | ||
| 99 | ) \ | ||
| 100 | { \ | ||
| 101 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \ | ||
| 102 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \ | ||
| 103 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \ | ||
| 104 | { k300, k301, k302, KC_NO, k303, KC_NO, KC_NO, k304, KC_NO, k305, k306, k307 }, \ | ||
| 105 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO} \ | ||
| 106 | } | ||
diff --git a/keyboards/quark/readme.md b/keyboards/quark/readme.md new file mode 100644 index 000000000..def04f59f --- /dev/null +++ b/keyboards/quark/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Quark | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | The Quark PCB is a modified layout for the Planck by OLKB. It's similar to a Planck, but the bottom row was designed to be more useable-larger than 1u keys. | ||
| 6 | |||
| 7 | Keyboard Maintainer: [Nasp](https://github.com/npspears) | ||
| 8 | Hardware Supported: Planck | ||
| 9 | Hardware Availability: https://forms.gle/ZpGtQjBNtsbuSV767 | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make quark:default | ||
| 14 | |||
| 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). | ||
diff --git a/keyboards/quark/rules.mk b/keyboards/quark/rules.mk new file mode 100644 index 000000000..535d7c25c --- /dev/null +++ b/keyboards/quark/rules.mk | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u2 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 11 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = no # Console for debug | ||
| 14 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 15 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 16 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 17 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 19 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 21 | AUDIO_ENABLE = no # Audio output | ||
| 22 | UNICODE_ENABLE = yes # Unicode | ||
| 23 | |||
| 24 | LAYOUTS = ortho_4x12 | ||
