diff options
| author | Joshua Lawrence <lawrencejw@gmail.com> | 2018-06-06 09:54:26 -0700 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-06-06 09:54:26 -0700 |
| commit | d86410103fd48a98c086dd7e5054d7d42905b741 (patch) | |
| tree | ab641c2573845920b44ca9eb23bef9ec949ee822 | |
| parent | 87abed6865e97f443bfc539413f9d454ee632722 (diff) | |
| download | qmk_firmware-d86410103fd48a98c086dd7e5054d7d42905b741.tar.gz qmk_firmware-d86410103fd48a98c086dd7e5054d7d42905b741.zip | |
Added jwlawrence keymap for zen keyboard (#3137)
* Created jwlawrence keymap
| -rw-r--r-- | keyboards/zen/keymaps/jwlawrence/config.h | 41 | ||||
| -rw-r--r-- | keyboards/zen/keymaps/jwlawrence/keymap.c | 103 | ||||
| -rw-r--r-- | keyboards/zen/keymaps/jwlawrence/rules.mk | 6 |
3 files changed, 150 insertions, 0 deletions
diff --git a/keyboards/zen/keymaps/jwlawrence/config.h b/keyboards/zen/keymaps/jwlawrence/config.h new file mode 100644 index 000000000..38e4d73f0 --- /dev/null +++ b/keyboards/zen/keymaps/jwlawrence/config.h | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2017 Danny Nguyen <danny@hexwire.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef CONFIG_USER_H | ||
| 19 | #define CONFIG_USER_H | ||
| 20 | |||
| 21 | #include "config_common.h" | ||
| 22 | |||
| 23 | /* Use I2C or Serial, not both */ | ||
| 24 | |||
| 25 | #define USE_SERIAL | ||
| 26 | // #define USE_I2C | ||
| 27 | |||
| 28 | /* Select hand configuration */ | ||
| 29 | |||
| 30 | #define MASTER_LEFT | ||
| 31 | // #define MASTER_RIGHT | ||
| 32 | // #define EE_HANDS | ||
| 33 | |||
| 34 | #undef RGBLED_NUM | ||
| 35 | #define RGBLIGHT_ANIMATIONS | ||
| 36 | #define RGBLED_NUM 16 | ||
| 37 | #define RGBLIGHT_HUE_STEP 8 | ||
| 38 | #define RGBLIGHT_SAT_STEP 8 | ||
| 39 | #define RGBLIGHT_VAL_STEP 8 | ||
| 40 | |||
| 41 | #endif | ||
diff --git a/keyboards/zen/keymaps/jwlawrence/keymap.c b/keyboards/zen/keymaps/jwlawrence/keymap.c new file mode 100644 index 000000000..ca7056718 --- /dev/null +++ b/keyboards/zen/keymaps/jwlawrence/keymap.c | |||
| @@ -0,0 +1,103 @@ | |||
| 1 | #include "zen.h" | ||
| 2 | #include "action_layer.h" | ||
| 3 | #include "eeconfig.h" | ||
| 4 | |||
| 5 | extern keymap_config_t keymap_config; | ||
| 6 | |||
| 7 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
| 8 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
| 9 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
| 10 | // entirely and just use numbers. | ||
| 11 | #define _QWERTY 0 | ||
| 12 | #define _NAV 2 | ||
| 13 | |||
| 14 | |||
| 15 | enum custom_keycodes { | ||
| 16 | QWERTY = SAFE_RANGE, | ||
| 17 | NAV, | ||
| 18 | |||
| 19 | }; | ||
| 20 | |||
| 21 | // Fillers to make layering more clear | ||
| 22 | #define _______ KC_TRNS | ||
| 23 | #define XXXXXXX KC_NO | ||
| 24 | |||
| 25 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 26 | |||
| 27 | /* Qwerty | ||
| 28 | * ,-----------------------------------------. .-----------------------------------------. | ||
| 29 | * | GESC | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Bksp | | ||
| 30 | * |------+------+------+------+------+------| |------+------+------+------+------+------| | ||
| 31 | * | Tab | Q | W | E | R | T | | Y | U | I | O | P | \ | | ||
| 32 | * |------+------+------+------+------+------| |------+------+------+------+------+------| | ||
| 33 | * |CAPS(NAV)|A | S | D | F | G | | H | J | K | L | ; | " | | ||
| 34 | * |------+------+------+------+------+------| |------+------+------+------+------+------| | ||
| 35 | * | Shift| Z | X | C | V | B | | N | M | , | . | / |Shift | | ||
| 36 | * |------+------+------+------+------+------+------..-----+------+------+------+------+------+------| | ||
| 37 | * | Ctrl | Alt | GUI | GUI | NAV |Space |Delete||Enter|Space | NAV | - | = |RGBTOG|Enter | | ||
| 38 | * `------------------------------------------------''-----------------------------------------------' | ||
| 39 | */ | ||
| 40 | [_QWERTY] = KEYMAP( \ | ||
| 41 | KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, \ | ||
| 42 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, \ | ||
| 43 | LT(_NAV, KC_CAPS),KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \ | ||
| 44 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, \ | ||
| 45 | KC_LCTL, KC_LALT, KC_LGUI, KC_LGUI, MO(_NAV), KC_SPC, KC_DEL, KC_ENT, KC_SPACE, MO(_NAV), KC_MINS, KC_EQL, RGB_TOG, KC_ENT \ | ||
| 46 | ), | ||
| 47 | |||
| 48 | /* NAV | ||
| 49 | * ,-----------------------------------------. .-----------------------------------------. | ||
| 50 | * | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 | | ||
| 51 | * |------+------+------+------+------+------| |------+------+------+------+------+------| | ||
| 52 | * | |RGBSAI|RGBVAI|RGBSAD| RESET| [ | | ] | Pgup | Up | Pgdn |Insert| Home | | ||
| 53 | * |------+------+------+------+------+------| |------+------+------+------+------+------| | ||
| 54 | * | |RGBHUD|RGBVAD|RGBHUI|RGBMOD| | | | Left | Down | Right|Delete| End | | ||
| 55 | * |------+------+------+------+------+------| |------+------+------+------+------+------| | ||
| 56 | * |Shift | | | | | | | NKRO | | | Pause| Back | Next | | ||
| 57 | * |------+------+------+------+------+------+------..-----+------+------+------+------+------+------| | ||
| 58 | * | Ctrl | Alt | GUI | | | | || | | | | Mute | VOLUP| VOLDN| | ||
| 59 | * `------------------------------------------------''-----------------------------------------------' | ||
| 60 | */ | ||
| 61 | [_NAV] = KEYMAP( \ | ||
| 62 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12 , \ | ||
| 63 | KC_TRNS, RGB_SAI, RGB_VAI, RGB_SAD, RESET, KC_LBRC, KC_RBRC, KC_PGUP, KC_UP, KC_PGDN, KC_INS, KC_HOME , \ | ||
| 64 | KC_TRNS, RGB_HUD, RGB_VAD, RGB_HUI, RGB_MOD, KC_TRNS, KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_DEL, KC_END , \ | ||
| 65 | KC_LSFT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, MAGIC_TOGGLE_NKRO, KC_TRNS, KC_TRNS, KC_MPLY, KC_MPRV, KC_MNXT , \ | ||
| 66 | KC_LCTL, KC_LALT, KC_LGUI, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MUTE, KC_VOLU, KC_VOLD \ | ||
| 67 | ), | ||
| 68 | |||
| 69 | }; | ||
| 70 | |||
| 71 | #ifdef AUDIO_ENABLE | ||
| 72 | float tone_qwerty[][2] = SONG(QWERTY_SOUND); | ||
| 73 | float tone_colemak[][2] = SONG(COLEMAK_SOUND); | ||
| 74 | #endif | ||
| 75 | |||
| 76 | void persistant_default_layer_set(uint16_t default_layer) { | ||
| 77 | eeconfig_update_default_layer(default_layer); | ||
| 78 | default_layer_set(default_layer); | ||
| 79 | } | ||
| 80 | |||
| 81 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 82 | switch (keycode) { | ||
| 83 | case QWERTY: | ||
| 84 | if (record->event.pressed) { | ||
| 85 | #ifdef AUDIO_ENABLE | ||
| 86 | PLAY_NOTE_ARRAY(tone_qwerty, false, 0); | ||
| 87 | #endif | ||
| 88 | persistant_default_layer_set(1UL<<_QWERTY); | ||
| 89 | } | ||
| 90 | return false; | ||
| 91 | break; | ||
| 92 | //case COLEMAK: | ||
| 93 | //if (record->event.pressed) { | ||
| 94 | //#ifdef AUDIO_ENABLE | ||
| 95 | //PLAY_NOTE_ARRAY(tone_colemak, false, 0); | ||
| 96 | //#endif | ||
| 97 | //persistant_default_layer_set(1UL<<_COLEMAK); | ||
| 98 | //} | ||
| 99 | //return false; | ||
| 100 | //break; | ||
| 101 | } | ||
| 102 | return true; | ||
| 103 | } \ No newline at end of file | ||
diff --git a/keyboards/zen/keymaps/jwlawrence/rules.mk b/keyboards/zen/keymaps/jwlawrence/rules.mk new file mode 100644 index 000000000..22b6ec476 --- /dev/null +++ b/keyboards/zen/keymaps/jwlawrence/rules.mk | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | RGBLIGHT_ENABLE = yes | ||
| 2 | BACKLIGHT_ENABLE = yes | ||
| 3 | |||
| 4 | ifndef QUANTUM_DIR | ||
| 5 | include ../../../../Makefile | ||
| 6 | endif | ||
