diff options
| author | rfvizarra <rfvizarra@gmail.com> | 2018-05-22 16:04:53 +0200 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-05-22 07:04:53 -0700 |
| commit | 5018892fa80ae1f68ea1b8924b840b7b160adad1 (patch) | |
| tree | da2544a7f0285b9e3ab585c158858913285b5e04 /keyboards/orthodox | |
| parent | ddbe60dc3652a4130fdf8167e06897e2c88d8e42 (diff) | |
| download | qmk_firmware-5018892fa80ae1f68ea1b8924b840b7b160adad1.tar.gz qmk_firmware-5018892fa80ae1f68ea1b8924b840b7b160adad1.zip | |
A personal layout for the orthodox keyboard (#3006)
* A personal layout for the orthodox keyboard
* Added layout readme.md
* Consolidated inclues with #include QMK_KEYBOARD_H
* Moved layer tones setup to config.h
* Replace persistent_default_layer_set calls with set_single_persistent_default_layer
* Simplified the process_record_user function using layer_state_set_user function and MO() to set the lower, raise, nav and media layers
* Removed AUDIO_ENABLE ifdefs and persistent_default_layer_set() as they are not needed any more
Diffstat (limited to 'keyboards/orthodox')
| -rw-r--r-- | keyboards/orthodox/keymaps/rfvizarra/config.h | 45 | ||||
| -rw-r--r-- | keyboards/orthodox/keymaps/rfvizarra/keymap.c | 138 | ||||
| -rw-r--r-- | keyboards/orthodox/keymaps/rfvizarra/readme.md | 19 | ||||
| -rw-r--r-- | keyboards/orthodox/keymaps/rfvizarra/rules.mk | 0 |
4 files changed, 202 insertions, 0 deletions
diff --git a/keyboards/orthodox/keymaps/rfvizarra/config.h b/keyboards/orthodox/keymaps/rfvizarra/config.h new file mode 100644 index 000000000..7ac207f0d --- /dev/null +++ b/keyboards/orthodox/keymaps/rfvizarra/config.h | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* | ||
| 2 | This is the c configuration file for the keymap | ||
| 3 | |||
| 4 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 5 | Copyright 2015 Jack Humbert | ||
| 6 | Copyright 2017 Art Ortenburger | ||
| 7 | |||
| 8 | This program is free software: you can redistribute it and/or modify | ||
| 9 | it under the terms of the GNU General Public License as published by | ||
| 10 | the Free Software Foundation, either version 2 of the License, or | ||
| 11 | (at your option) any later version. | ||
| 12 | |||
| 13 | This program is distributed in the hope that it will be useful, | ||
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | GNU General Public License for more details. | ||
| 17 | |||
| 18 | You should have received a copy of the GNU General Public License | ||
| 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | */ | ||
| 21 | |||
| 22 | #ifndef CONFIG_USER_H | ||
| 23 | #define CONFIG_USER_H | ||
| 24 | |||
| 25 | #include "config_common.h" | ||
| 26 | |||
| 27 | #ifdef AUDIO_ENABLE | ||
| 28 | #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ | ||
| 29 | SONG(COLEMAK_SOUND), \ | ||
| 30 | SONG(DVORAK_SOUND) \ | ||
| 31 | } | ||
| 32 | #endif | ||
| 33 | |||
| 34 | /* Use I2C or Serial, not both */ | ||
| 35 | |||
| 36 | // #define USE_SERIAL | ||
| 37 | #define USE_I2C | ||
| 38 | |||
| 39 | /* Select hand configuration */ | ||
| 40 | |||
| 41 | // #define MASTER_LEFT | ||
| 42 | // #define MASTER_RIGHT | ||
| 43 | #define EE_HANDS | ||
| 44 | |||
| 45 | #endif | ||
diff --git a/keyboards/orthodox/keymaps/rfvizarra/keymap.c b/keyboards/orthodox/keymaps/rfvizarra/keymap.c new file mode 100644 index 000000000..55f0fa016 --- /dev/null +++ b/keyboards/orthodox/keymaps/rfvizarra/keymap.c | |||
| @@ -0,0 +1,138 @@ | |||
| 1 | /* | ||
| 2 | This is the keymap for the keyboard | ||
| 3 | |||
| 4 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 5 | Copyright 2015 Jack Humbert | ||
| 6 | Copyright 2017 Art Ortenburger | ||
| 7 | |||
| 8 | This program is free software: you can redistribute it and/or modify | ||
| 9 | it under the terms of the GNU General Public License as published by | ||
| 10 | the Free Software Foundation, either version 2 of the License, or | ||
| 11 | (at your option) any later version. | ||
| 12 | |||
| 13 | This program is distributed in the hope that it will be useful, | ||
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | GNU General Public License for more details. | ||
| 17 | |||
| 18 | You should have received a copy of the GNU General Public License | ||
| 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include QMK_KEYBOARD_H | ||
| 23 | |||
| 24 | extern keymap_config_t keymap_config; | ||
| 25 | |||
| 26 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
| 27 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
| 28 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
| 29 | // entirely and just use numbers. | ||
| 30 | #define _QWERTY 0 | ||
| 31 | #define _COLEMAK 1 | ||
| 32 | #define _DVORAK 2 | ||
| 33 | #define _LOWER 3 | ||
| 34 | #define _RAISE 4 | ||
| 35 | #define _NAV 5 | ||
| 36 | #define _NAV2 6 | ||
| 37 | #define _MEDIA 7 | ||
| 38 | #define _ADJUST 16 | ||
| 39 | |||
| 40 | enum custom_keycodes { | ||
| 41 | QWERTY = SAFE_RANGE, | ||
| 42 | COLEMAK, | ||
| 43 | DVORAK | ||
| 44 | }; | ||
| 45 | |||
| 46 | // Fillers to make layering more clear | ||
| 47 | #define _______ KC_TRNS | ||
| 48 | #define XXXXXXX KC_NO | ||
| 49 | |||
| 50 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 51 | |||
| 52 | [_QWERTY] = LAYOUT( \ | ||
| 53 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, \ | ||
| 54 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_LGUI, KC_LALT, MO(_MEDIA) , KC_DEL, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \ | ||
| 55 | MO(_NAV),KC_Z, KC_X, KC_C, KC_V, KC_B, MO(_LOWER), KC_LSFT, CTL_T(KC_ENT), KC_RALT, KC_SPC, MO(_RAISE), KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LGUI \ | ||
| 56 | ), | ||
| 57 | |||
| 58 | [_COLEMAK] = LAYOUT(\ | ||
| 59 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, \ | ||
| 60 | KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_UP, KC_DOWN, KC_LEFT, KC_RIGHT, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, \ | ||
| 61 | KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, MO(_LOWER), KC_SPACE, KC_BSPC, KC_DEL, KC_ENT, MO(_RAISE), KC_K, KC_M, KC_COMM, KC_DOT, KC_SLASH, KC_LGUI \ | ||
| 62 | ), | ||
| 63 | |||
| 64 | [_DVORAK] = LAYOUT(\ | ||
| 65 | KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC, \ | ||
| 66 | KC_ESC, KC_A, KC_O, KC_E, KC_U, KC_I, KC_UP, KC_DOWN, KC_LEFT, KC_RIGHT, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, \ | ||
| 67 | KC_LCTL, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, MO(_LOWER), KC_SPACE, KC_BSPC, KC_DEL, KC_ENT, MO(_RAISE), KC_B, KC_M, KC_W, KC_V, KC_Z, KC_LGUI \ | ||
| 68 | ), | ||
| 69 | |||
| 70 | [_LOWER] = LAYOUT( \ | ||
| 71 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, \ | ||
| 72 | KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_LCTL, _______, _______, KC_RCTL, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, \ | ||
| 73 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, _______, _______, _______, _______, _______, _______, KC_F12, KC_HOME, KC_COMM, KC_DOT, KC_END, _______ \ | ||
| 74 | ), | ||
| 75 | |||
| 76 | [_RAISE] = LAYOUT( \ | ||
| 77 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, \ | ||
| 78 | KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, _______, _______, _______, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \ | ||
| 79 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, _______, _______, _______, _______, _______, _______, KC_F12, KC_PGUP, KC_COMM, KC_DOT, KC_PGDN, _______ \ | ||
| 80 | ), | ||
| 81 | |||
| 82 | [_NAV] = LAYOUT( \ | ||
| 83 | _______, _______, _______, _______, _______, _______, _______, _______, KC_UP, _______, _______, _______, \ | ||
| 84 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RIGHT, _______, _______, \ | ||
| 85 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \ | ||
| 86 | ), | ||
| 87 | |||
| 88 | [_NAV2] = LAYOUT( \ | ||
| 89 | _______, _______, _______, _______, _______, _______, _______, _______, KC_PGUP, _______, _______, _______, \ | ||
| 90 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_END, _______, _______, \ | ||
| 91 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \ | ||
| 92 | ), | ||
| 93 | |||
| 94 | [_MEDIA] = LAYOUT( \ | ||
| 95 | _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU, _______, _______, _______, \ | ||
| 96 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_MPLY, _______, _______, \ | ||
| 97 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \ | ||
| 98 | ), | ||
| 99 | |||
| 100 | [_ADJUST] = LAYOUT( \ | ||
| 101 | _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
| 102 | _______, _______, _______, AU_ON, AU_OFF, AG_NORM, _______, _______, _______, _______, AG_SWAP, QWERTY , COLEMAK, DVORAK, _______, _______, \ | ||
| 103 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \ | ||
| 104 | ) | ||
| 105 | |||
| 106 | |||
| 107 | }; | ||
| 108 | |||
| 109 | uint32_t layer_state_set_user(uint32_t state) { | ||
| 110 | state = update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST); | ||
| 111 | state = update_tri_layer_state(state, _LOWER, _NAV, _NAV2); | ||
| 112 | return state; | ||
| 113 | } | ||
| 114 | |||
| 115 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 116 | switch (keycode) { | ||
| 117 | case QWERTY: | ||
| 118 | if (record->event.pressed) { | ||
| 119 | set_single_persistent_default_layer(_QWERTY); | ||
| 120 | } | ||
| 121 | return false; | ||
| 122 | break; | ||
| 123 | case COLEMAK: | ||
| 124 | if (record->event.pressed) { | ||
| 125 | set_single_persistent_default_layer(_COLEMAK); | ||
| 126 | } | ||
| 127 | return false; | ||
| 128 | break; | ||
| 129 | case DVORAK: | ||
| 130 | if (record->event.pressed) { | ||
| 131 | set_single_persistent_default_layer(_DVORAK); | ||
| 132 | } | ||
| 133 | return false; | ||
| 134 | break; | ||
| 135 | } | ||
| 136 | return true; | ||
| 137 | } | ||
| 138 | |||
diff --git a/keyboards/orthodox/keymaps/rfvizarra/readme.md b/keyboards/orthodox/keymaps/rfvizarra/readme.md new file mode 100644 index 000000000..922832c17 --- /dev/null +++ b/keyboards/orthodox/keymaps/rfvizarra/readme.md | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # A personal Orthodox Layout | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | This is the layout for my daily driver orthodox. It's based on a custom handwire keyboard that I've been using for quite some time. It's based on Plank's/Let's split layouts for the lower/raise layers. I added the shift, control/enter, alt/altgr and del to the thumb cluster. | ||
| 6 | |||
| 7 | To build the firmware run from qmk's project folder | ||
| 8 | |||
| 9 | make orthodox/rev3:rfvizarra:avrdude | ||
| 10 | |||
| 11 | And to flash it, run | ||
| 12 | |||
| 13 | make orthodox/rev3:rfvizarra:avrdude | ||
| 14 | |||
| 15 | reset your keyboard pro micro while connected to the PC with a micro usb cable. | ||
| 16 | |||
| 17 | Repeat on both halves. | ||
| 18 | |||
| 19 | See [install build tools](https://docs.qmk.fm/install-build-tools) then the [build/compile instructions](https://docs.qmk.fm/build-compile-instructions) for more information. | ||
diff --git a/keyboards/orthodox/keymaps/rfvizarra/rules.mk b/keyboards/orthodox/keymaps/rfvizarra/rules.mk new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/orthodox/keymaps/rfvizarra/rules.mk | |||
