diff options
| author | Yet Another Developer <50936645+yet-another-developer@users.noreply.github.com> | 2019-10-21 02:07:57 +0800 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-10-20 11:07:56 -0700 |
| commit | 3d53ea439c277e49cd4149a6caea727304f41ace (patch) | |
| tree | 1d782a97be651ff911342cbec19cdb18ceeeda62 /layouts | |
| parent | f64d9b06215bb08d7f77aeba126c0804fffd0064 (diff) | |
| download | qmk_firmware-3d53ea439c277e49cd4149a6caea727304f41ace.tar.gz qmk_firmware-3d53ea439c277e49cd4149a6caea727304f41ace.zip | |
[Keymap] Ergodash keymap for yet-another-developer (#7046)
* Initialize ergodash rev 1 keymap
./util/new_keymap.sh ergodash/rev1 yet-another-developer
* Add user space configurations referenced from drashna
* Start community layout for ergodash in ortho_5x14
* Remove unused layers
* Add userspace layers
* Add Userspace gitignore
Hide Secrets
* Remove userspace unused drashna features
* Scrap default keymap and follow drashna's template
* Add code referenced from kuchosauronad0
* Make sure that the author is named Developer
* Replace middle keys del and bksp with curly brace
* Reduce ONESHOT_TIMEOUT from 3sec to 2sec
* Remove adjust key AG_SWAP
* Disable UNICODEMAP_ENABLE, remove code causing build fail
* Increase TAPPING_TERM to 240
Reason: Because Space is also LOWER, space sometimes not registering.
PS: I dont want to #define RETRO_TAPPING yet
* Update KC_MAKE to use :flash
* Remove TAP_ONCE, use tap_code
Signed-off-by: Developer <anotherdeveloper@icloud.com>
* Remove redundant code implementation of keyboard_post_init_user
https://github.com/qmk/qmk_firmware/pull/7046
users/yet-another-developer/leader.c
```
static bool has_ran_yet;
if (!has_ran_yet) {
has_ran_yet = true;
startup_user();
```
Comment for lines +11 – +14
@drashna: Not needed anymore. You can use keyboard_post_init_user now.
Signed-off-by: Developer <anotherdeveloper@icloud.com>
Diffstat (limited to 'layouts')
3 files changed, 231 insertions, 0 deletions
diff --git a/layouts/community/ortho_5x14/yet-another-developer/config.h b/layouts/community/ortho_5x14/yet-another-developer/config.h new file mode 100644 index 000000000..7504338ff --- /dev/null +++ b/layouts/community/ortho_5x14/yet-another-developer/config.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* ws2812 RGB LED */ | ||
| 4 | #if defined(KEYBOARD_fractal) | ||
| 5 | # define RGB_DI_PIN D2 | ||
| 6 | # undef RGBLED_NUM | ||
| 7 | # define RGBLIGHT_ANIMATIONS | ||
| 8 | # define RGBLED_NUM 29 // Number of LEDs | ||
| 9 | # undef RGBLIGHT_HUE_STEP | ||
| 10 | # define RGBLIGHT_HUE_STEP 8 | ||
| 11 | # undef RGBLIGHT_SAT_STEP | ||
| 12 | # define RGBLIGHT_SAT_STEP 8 | ||
| 13 | # undef RGBLIGHT_VAL_STEP | ||
| 14 | # define RGBLIGHT_VAL_STEP 8 | ||
| 15 | # define RGBLIGHT_LIMIT_VAL 175 | ||
| 16 | # define RGBLIGHT_SLEEP | ||
| 17 | |||
| 18 | # define RGBLIGHT_EFFECT_KNIGHT_OFFSET 3 | ||
| 19 | # define RGBLIGHT_EFFECT_KNIGHT_LED_NUM 14 | ||
| 20 | # define B7_AUDIO | ||
| 21 | # define NO_MUSIC_MODE | ||
| 22 | #endif | ||
diff --git a/layouts/community/ortho_5x14/yet-another-developer/keymap.c b/layouts/community/ortho_5x14/yet-another-developer/keymap.c new file mode 100644 index 000000000..aea50508d --- /dev/null +++ b/layouts/community/ortho_5x14/yet-another-developer/keymap.c | |||
| @@ -0,0 +1,208 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | #include "yet-another-developer.h" | ||
| 3 | |||
| 4 | // clang-format off | ||
| 5 | |||
| 6 | /* ---------- LEFT HAND ----------- ---------- RIGHT HAND ---------- */ | ||
| 7 | #define LAYOUT_ergodash_pretty( \ | ||
| 8 | L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \ | ||
| 9 | L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \ | ||
| 10 | L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \ | ||
| 11 | L30, L31, L32, L33, L34, L35, R31, R32, R33, R34, R35, R36, \ | ||
| 12 | L40, L41, L42, L43, R43, R44, R45, R46 \ | ||
| 13 | L36, R30, \ | ||
| 14 | L44, L45, L46, R40, R41, R42, \ | ||
| 15 | ) \ | ||
| 16 | /* matrix positions */ \ | ||
| 17 | { \ | ||
| 18 | { L00, L01, L02, L03, L04, L05, L06 }, \ | ||
| 19 | { L10, L11, L12, L13, L14, L15, L16 }, \ | ||
| 20 | { L20, L21, L22, L23, L24, L25, L26 }, \ | ||
| 21 | { L30, L31, L32, L33, L34, L35, L36 }, \ | ||
| 22 | { L40, L41, L42, L43, L44, L45, L46 }, \ | ||
| 23 | { R06, R05, R04, R03, R02, R01, R00 }, \ | ||
| 24 | { R16, R15, R14, R13, R12, R11, R10 }, \ | ||
| 25 | { R26, R25, R24, R23, R22, R21, R20 }, \ | ||
| 26 | { R36, R35, R34, R33, R32, R31, R30 }, \ | ||
| 27 | { R46, R45, R44, R43, R42, R41, R40 } \ | ||
| 28 | } | ||
| 29 | |||
| 30 | #define LAYOUT_ergodash_pretty_wrapper(...) LAYOUT_ergodash_pretty(__VA_ARGS__) | ||
| 31 | |||
| 32 | #define LAYOUT_ergodash_pretty_base( \ | ||
| 33 | K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \ | ||
| 34 | K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \ | ||
| 35 | K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A \ | ||
| 36 | ) \ | ||
| 37 | LAYOUT_ergodox_pretty_wrapper( \ | ||
| 38 | KC_ESC, ________________NUMBER_LEFT________________, KC_LBRC, KC_RBRC, ________________NUMBER_RIGHT_______________, KC_PSCR, \ | ||
| 39 | KC_GRV, K01, K02, K03, K04, K05, KC_MINS, KC_EQL, K06, K07, K08, K09, K0A, KC_BSLS, \ | ||
| 40 | KC_TAB, ALT_T(K11), K12, K13, K14, K15, KC_DEL, KC_BSPC, K16, K17, K18, K19, K1A, RALT_T(KC_QUOT), \ | ||
| 41 | KC_LSFT, CTL_T(K21), K22, K23, K24, K25, K26, K27, K28, K29, RCTL_T(K2A), KC_MRSF, \ | ||
| 42 | KC_LCTL, KC_LGUI, KC_LALT, EISU, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \ | ||
| 43 | LT(_LOWER, KC_SPC), LT(_RAISE, KC_ENT), \ | ||
| 44 | OS_LGUI,LT(_LOWER, KC_SPC),KC_DEL, KC_BSPC, LT(_RAISE, KC_ENT), OS_RGUI \ | ||
| 45 | ) | ||
| 46 | |||
| 47 | #define LAYOUT_ergodash_pretty_base_wrapper(...) LAYOUT_ergodash_pretty_base(__VA_ARGS__) | ||
| 48 | |||
| 49 | |||
| 50 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 51 | /* Keymap 0: QWERTY Layer | ||
| 52 | * | ||
| 53 | * | ||
| 54 | * ,--------------------------------------------------. ,--------------------------------------------------. | ||
| 55 | * | = + | 1 ! | 2 @ | 3 # | 4 $ | 5 % | TG(4)| | TG(4)| 6 ^ | 7 & | 8 * | 9 ( | 0 ) | - _ | | ||
| 56 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | ||
| 57 | * | TAB | Q | W | E | R | T | TG(3)| |TG(3) | Y | U | I | O | P | \ | | | ||
| 58 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
| 59 | * | Bksp | A | S | D | F | G |------| |------| H | J | K | L | ; | ' " | | ||
| 60 | * |--------+------+------+------+------+------| TG(2)| | TG(2)|------+------+------+------+------+--------| | ||
| 61 | * | Shift | Z | X | C | V | B | | | | N | M | , < | . > | ? / | Shift | | ||
| 62 | * |--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------| | ||
| 63 | * | `/SYM | MEH | LGUI | [ { | | LEFT | DOWN | UP |RIGHT | SYMB | | ||
| 64 | * `-----------------------------' `------------------------------------' | ||
| 65 | * ,--------------. ,--------------. | ||
| 66 | * |Alt/Ap| Win | | Alt |Ctl/Esc| | ||
| 67 | * ,------|------|-------| |------+-------+------. | ||
| 68 | * | | | Home | | PgUp | | | | ||
| 69 | * `---------------------' `---------------------' | ||
| 70 | */ | ||
| 71 | [_QWERTY] = LAYOUT_ergodash_pretty_base_wrapper( | ||
| 72 | _________________QWERTY_L1_________________, _________________QWERTY_R1_________________, | ||
| 73 | _________________QWERTY_L2_________________, _________________QWERTY_R2_________________, | ||
| 74 | _________________QWERTY_L3_________________, _________________QWERTY_R3_________________ | ||
| 75 | ), | ||
| 76 | /* Keymap 0: COLEMAK layer | ||
| 77 | * | ||
| 78 | * ,--------------------------------------------------. ,--------------------------------------------------. | ||
| 79 | * | = | 1 | 2 | 3 | 4 | 5 | LEFT | | RIGHT| 6 | 7 | 8 | 9 | 0 | - | | ||
| 80 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | ||
| 81 | * | Del | Q | W | F | P | G | L1 | | L1 | J | L | U | Y | ; | \ | | ||
| 82 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
| 83 | * | BkSp | A | R | S | T | D |------| |------| H | N | E | I |O / L2| ' | | ||
| 84 | * |--------+------+------+------+------+------| OVER | | Meh |------+------+------+------+------+--------| | ||
| 85 | * | LShift |Z/Ctrl| X | C | V | B | | | | K | M | , | . |//Ctrl| RShift | | ||
| 86 | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | ||
| 87 | * | `/SYM | MEH | LGUI | [ { | | LEFT | DOWN | UP |RIGHT | SYMB | | ||
| 88 | * `-----------------------------' `------------------------------------' | ||
| 89 | * ,--------------. ,--------------. | ||
| 90 | * |Alt/Ap| Win | | Alt |Ctl/Esc| | ||
| 91 | * ,------|------|-------| |------+-------+------. | ||
| 92 | * | | | Home | | PgUp | | | | ||
| 93 | * `---------------------' `---------------------' | ||
| 94 | */ | ||
| 95 | // If it accepts an argument (i.e, is a function), it doesn't need KC_. | ||
| 96 | // Otherwise, it needs KC_* | ||
| 97 | [_COLEMAK] = LAYOUT_ergodash_pretty_base_wrapper( | ||
| 98 | _________________COLEMAK_L1________________, _________________COLEMAK_R1________________, | ||
| 99 | _________________COLEMAK_L2________________, _________________COLEMAK_R2________________, | ||
| 100 | _________________COLEMAK_L3________________, _________________COLEMAK_R3________________ | ||
| 101 | ), | ||
| 102 | |||
| 103 | // Reverts OSM(Shift) to normal Shifts. However, may not need since we fixed the issue with RDP (LOCAL RESOURCES) | ||
| 104 | [_MODS] = LAYOUT_ergodash_pretty_wrapper( | ||
| 105 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 106 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 107 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 108 | KC_LSFT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_RSFT, | ||
| 109 | _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 110 | _______, _______, _______, _______, | ||
| 111 | _______, _______, _______, _______, _______, _______ | ||
| 112 | ), | ||
| 113 | |||
| 114 | |||
| 115 | /* Keymap 4: Customized Overwatch Layout | ||
| 116 | * | ||
| 117 | * ,--------------------------------------------------. ,--------------------------------------------------. | ||
| 118 | * | ESC | | | | | | | | | F9 | F10 | F11 | F12 | | | | ||
| 119 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | ||
| 120 | * | F1 | K | Q | W | E | R | T | | | | | | | | | | ||
| 121 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
| 122 | * | TAB | G | A | S | D | F |------| |------| | | | | | | | ||
| 123 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
| 124 | * | LCTR | LSHFT| Z | X | C | V | | | | N | M | | | | | | ||
| 125 | * |--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------| | ||
| 126 | * | `/SYM | MEH | LGUI | [ { | | LEFT | DOWN | UP |RIGHT | SYMB | | ||
| 127 | * `-----------------------------' `------------------------------------' | ||
| 128 | * ,--------------. ,--------------. | ||
| 129 | * |Alt/Ap| Win | | Alt |Ctl/Esc| | ||
| 130 | * ,------|------|-------| |------+-------+------. | ||
| 131 | * | | | Home | | PgUp | | | | ||
| 132 | * `---------------------' `---------------------' | ||
| 133 | */ | ||
| 134 | [_GAMEPAD] = LAYOUT_ergodash_pretty_wrapper( | ||
| 135 | KC_ESC, KC_NO, KC_1, KC_2, KC_3, HYPR(KC_Q), HYPR(KC_GRV), KC_TRNS, KC_F9, KC_F10, KC_F11, KC_F12, KC_NO, KC_NO, | ||
| 136 | KC_F1, KC_K, KC_Q, KC_W, KC_E, KC_R, KC_T, UC_SHRG, UC_DISA, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 137 | KC_TAB, KC_G, KC_A, KC_S, KC_D, KC_F, KC_I, KC_O, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 138 | KC_LCTL, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_TRNS, TG(_GAMEPAD), KC_N, KC_M, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 139 | KC_GRV, KC_U, KC_I, KC_Y, KC_T, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_NO, | ||
| 140 | KC_O, KC_P, MAGIC_TOGGLE_NKRO, LALT(KC_PSCR), | ||
| 141 | KC_LGUI, KC_HYPR, | ||
| 142 | KC_V, KC_SPC, KC_H, KC_NO, KC_NO, KC_SWAP_NUM | ||
| 143 | ), | ||
| 144 | |||
| 145 | /* Keymap 3: | ||
| 146 | * | ||
| 147 | * ,--------------------------------------------------. ,--------------------------------------------------. | ||
| 148 | * | ESC | V | D | ALT | | | | | | | | | | | | | ||
| 149 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | ||
| 150 | * | TAB | S | I | F | M | T | | | | | | | | | | | ||
| 151 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
| 152 | * | Q | 1 | 2 | 3 | 4 | G |------| |------| | | | | | | | ||
| 153 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
| 154 | * | NUMLOCK| NUM1 | NUM2 | NUM3 | NUM4 | Z | | | | | | | | | | | ||
| 155 | * |--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | ||
| 156 | * | `/SYM | MEH | LGUI | [ { | | LEFT | DOWN | UP |RIGHT | SYMB | | ||
| 157 | * `-----------------------------' `------------------------------------' | ||
| 158 | * ,--------------. ,--------------. | ||
| 159 | * |Alt/Ap| Win | | Alt |Ctl/Esc| | ||
| 160 | * ,------|------|-------| |------+-------+------. | ||
| 161 | * | | | Home | | PgUp | | | | ||
| 162 | * `---------------------' `---------------------' | ||
| 163 | */ | ||
| 164 | [_DIABLO] = LAYOUT_ergodash_pretty_wrapper( | ||
| 165 | KC_ESC, KC_V, KC_D, KC_LALT, KC_NO, KC_NO, KC_NO, KC_TRNS, KC_F9, KC_F10, KC_F11, KC_F12, KC_NO, KC_NO, | ||
| 166 | KC_TAB, KC_S, KC_I, KC_F, KC_M, KC_T, KC_TRNS, KC_TRNS, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 167 | KC_Q, KC_1, KC_2, KC_3, KC_4, KC_G, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 168 | KC_LCTL, KC_D3_1, KC_D3_2, KC_D3_3, KC_D3_4, KC_Z, KC_NO, KC_NO, KC_N, KC_M, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 169 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
| 170 | KC_L, KC_J, KC_NO, KC_NO, | ||
| 171 | KC_F, KC_NO, | ||
| 172 | SFT_T(KC_SPACE), ALT_T(KC_Q), KC_DIABLO_CLEAR, KC_PGDN, KC_DEL, KC_ENT | ||
| 173 | ), | ||
| 174 | |||
| 175 | [_LOWER] = LAYOUT_ergodash_pretty_wrapper( | ||
| 176 | KC_F12, _________________FUNC_LEFT_________________, _______, _______, _________________FUNC_RIGHT________________, KC_F11, | ||
| 177 | KC_TILD, _________________LOWER_L1__________________, _______, _______, _________________LOWER_R1__________________, KC_PIPE, | ||
| 178 | _______, ___________________BLANK___________________, _________________LOWER_R2__________________, KC_DQUO, | ||
| 179 | _______, ___________________BLANK___________________, _______, _______, _________________LOWER_R3__________________, KC_PSCR, | ||
| 180 | _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PAUS, | ||
| 181 | _______, _______, _______, _______, | ||
| 182 | _______, _______, | ||
| 183 | _______, _______, _______, _______, _______, _______ | ||
| 184 | ), | ||
| 185 | |||
| 186 | [_RAISE] = LAYOUT_ergodash_pretty_wrapper( | ||
| 187 | KC_F12, _________________FUNC_LEFT_________________, _______, _______, _________________FUNC_RIGHT________________, KC_F11, | ||
| 188 | KC_GRV, _________________RAISE_L1__________________, _______, _______, _________________RAISE_R1__________________, KC_BSLS, | ||
| 189 | _______, _________________RAISE_L2__________________, _________________RAISE_R2__________________, KC_QUOT, | ||
| 190 | _______, _________________RAISE_L3__________________, _______, _______, _________________RAISE_R3__________________, KC_PSCR, | ||
| 191 | _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_SLCK, | ||
| 192 | _______, _______, _______, _______, | ||
| 193 | _______, _______, _______, _______, _______, _______ | ||
| 194 | ), | ||
| 195 | |||
| 196 | [_ADJUST] = LAYOUT_ergodash_pretty_wrapper( | ||
| 197 | KC_MAKE, _______, _______, _______, _______, _______, _______, KC_NUKE, _________________ADJUST_R1_________________, KC_RST, | ||
| 198 | VRSN, _________________ADJUST_L1_________________, _______, _______, _______, _______, _______, _______, _______, EEP_RST, | ||
| 199 | _______, _________________ADJUST_L2_________________, _________________ADJUST_R2_________________, RGB_IDL, | ||
| 200 | _______, _________________ADJUST_L3_________________, _______, _______, _________________ADJUST_R3_________________, TG(_MODS), | ||
| 201 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 202 | _______, _______, _______, _______, | ||
| 203 | _______, _______, | ||
| 204 | _______, _______, _______, _______, _______, _______ | ||
| 205 | ), | ||
| 206 | |||
| 207 | }; | ||
| 208 | // clang-format on | ||
diff --git a/layouts/community/ortho_5x14/yet-another-developer/rules.mk b/layouts/community/ortho_5x14/yet-another-developer/rules.mk new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/layouts/community/ortho_5x14/yet-another-developer/rules.mk | |||
| @@ -0,0 +1 @@ | |||
