aboutsummaryrefslogtreecommitdiff
path: root/keyboards/torn/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorRichard Titmuss <richard.titmuss@gmail.com>2020-09-20 02:48:43 +0200
committerGitHub <noreply@github.com>2020-09-19 17:48:43 -0700
commite1437c1859b088c4da7ffb517f8034723172cd82 (patch)
tree9150a41bc34fea8937b2684138e826ead3f04fd2 /keyboards/torn/keymaps/default/keymap.c
parent741856dd57735dcd143987eb954ecc4a5ca2fc96 (diff)
downloadqmk_firmware-e1437c1859b088c4da7ffb517f8034723172cd82.tar.gz
qmk_firmware-e1437c1859b088c4da7ffb517f8034723172cd82.zip
[Keyboard] Add Torn keyboard (#10207)
* Add Torn keyboard * Apply suggestions from code review Co-authored-by: Nick Brassel <nick@tzarc.org> * Remove via json file * Add mcp23081_pin_t * Apply suggestions from code review Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Drashna Jaelre <drashna@live.com> * Apply suggestions from code review Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Richard Titmuss <richardt@spotify.com> Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/torn/keymaps/default/keymap.c')
-rw-r--r--keyboards/torn/keymaps/default/keymap.c119
1 files changed, 119 insertions, 0 deletions
diff --git a/keyboards/torn/keymaps/default/keymap.c b/keyboards/torn/keymaps/default/keymap.c
new file mode 100644
index 000000000..7c91325bd
--- /dev/null
+++ b/keyboards/torn/keymaps/default/keymap.c
@@ -0,0 +1,119 @@
1/* Copyright 2020 Richard Titmuss (richard.titmuss@gmail.com)
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#include QMK_KEYBOARD_H
18
19enum torn_layers { _QWERTY, _LOWER, _RAISE, _ADJUST };
20
21#define S_BSPC LSFT_T(KC_BSPC)
22#define R_DEL LT(_RAISE, KC_DEL)
23#define G_ENT LGUI_T(KC_ENT)
24#define L_SPC LT(_LOWER, KC_SPC)
25
26// clang-format off
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28
29/* Qwerty
30 * ,-----------------------------------------. ,-----------------------------------------.
31 * | Tab | Q | W | E | R | T | | Y | U | I | O | P | ' |
32 * |------+------+------+------+------+------| |------+------+------+------+------+------|
33 * | ` | A | S | D | F | G | | H | J | K | L | ; | [ |
34 * |------+------+------+------+------+------| |------+------+------+------+------+------|
35 * | \ | Z | X | C | V | B | | N | M | , | . | / | ] |
36 * |------+------+------+------+------+------| |------+------+------+------+------+------|
37 * | ____ | Ctrl | Bksp | Del | |Enter |Space | Alt | ____ |
38 * | | |Shift |Raise | | Gui |Lower | | |
39 * `---------------------------' `---------------------------'
40 */
41[_QWERTY] = LAYOUT_split_3x6_4(
42 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT,
43 KC_GRV, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_LBRC,
44 KC_BSLS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RBRC ,
45 _______, KC_LCTL, S_BSPC, R_DEL, G_ENT, L_SPC, KC_RALT, _______
46),
47
48/* Lower
49 * ,-----------------------------------------. ,-----------------------------------------.
50 * | Esc | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
51 * |------+------+------+------+------+------| |------+------+------+------+------+------|
52 * | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
53 * |------+------+------+------+------+------| |------+------+------+------+------+------|
54 * | _ | | | | | | | | | , | . | / | + |
55 * |------+------+------+------+------+------| |------+------+------+------+------+------|
56 * | ____ | Ctrl | Bksp | Del | |Enter |Space | Alt | ____ |
57 * | | |Shift |Raise | | Gui |Lower | | |
58 * `---------------------------' `---------------------------'
59 */
60[_LOWER] = LAYOUT_split_3x6_4(
61 KC_ESC, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
62 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_PMNS,
63 KC_UNDS, _______, _______, _______, _______, _______, _______, _______, KC_COMM, KC_DOT, KC_SLSH, KC_PPLS,
64 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
65),
66
67/* Raise
68 * ,-----------------------------------------. ,-----------------------------------------.
69 * | | F1 | F2 | F3 | F4 | F5 | | | & | * | ( | ) | |
70 * |------+------+------+------+------+------| |------+------+------+------+------+------|
71 * | | F6 | F7 | F8 | F9 | F10 | | Home | Left | Down | Right| End | PgUp |
72 * |------+------+------+------+------+------| |------+------+------+------+------+------|
73 * | | F11 | F12 | | | | | | | | | | PgDn |
74 * |------+------+------+------+------+------| |------+------+------+------+------+------|
75 * | ____ | Ctrl | Bksp | Del | |Enter |Space | Alt | ____ |
76 * | | |Shift |Raise | | Gui |Lower | | |
77 * `---------------------------' `---------------------------'
78 */
79[_RAISE] = LAYOUT_split_3x6_4(
80 _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, S(A(KC_LEFT)), KC_UP, S(A(KC_RGHT)), _______, _______,
81 _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_HOME, KC_LEFT, KC_DOWN, KC_RGHT, KC_END, KC_PGUP,
82 _______, KC_F11, KC_F12, _______, _______, _______, A(KC_BSPC), A(KC_LEFT), S(KC_DOWN), A(KC_RGHT), _______, KC_PGDN ,
83 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
84),
85
86/* Adjust (Lower + Raise)
87 * ,-----------------------------------------. ,-----------------------------------------.
88 * | | | | | | | | | | | | | |
89 * |------+------+------+------+------+------| |------+------+------+------+------+------|
90 * | | | | | | | | | | | | | |
91 * |------+------+------+------+------+------| |------+------+------+------+------+------|
92 * | | | | | | | | | | | | | |
93 * |------+------+------+------+------+------| |------+------+------+------+------+------|
94 * | ____ | Ctrl | Bksp | Del | |Enter |Space | Alt | ____ |
95 * | | |Shift |Raise | | Gui |Lower | | |
96 * `---------------------------' `---------------------------'
97 */
98[_ADJUST] = LAYOUT_split_3x6_4(
99 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
100 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
101 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
102 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
103)
104
105};
106
107const uint16_t PROGMEM encoder_keymaps[][2][2] = {
108 [_QWERTY] = { { C(S(KC_TAB)), C(KC_TAB) }, { KC_PGDN, KC_PGUP } },
109 [_LOWER] = { { C(KC_LEFT), C(KC_RGHT) }, { KC__VOLDOWN, KC__VOLUP } },
110 [_RAISE] = { { KC_TRNS, KC_TRNS }, { G(KC_TAB), G(S(KC_TAB)) } },
111 [_ADJUST] = { { KC_TRNS, KC_TRNS }, { KC_TRNS, KC_TRNS } },
112};
113// clang-format on
114
115layer_state_t layer_state_set_user(layer_state_t state) {
116 torn_set_led(0, IS_LAYER_ON_STATE(state, _RAISE));
117 torn_set_led(1, IS_LAYER_ON_STATE(state, _LOWER));
118 return state;
119}