diff options
| -rw-r--r-- | keyboards/planck/keymaps/dudeofawesome/config.h | 48 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/dudeofawesome/keymap.c | 191 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/dudeofawesome/readme.md | 22 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/dudeofawesome/rules.mk | 10 |
4 files changed, 271 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/dudeofawesome/config.h b/keyboards/planck/keymaps/dudeofawesome/config.h new file mode 100644 index 000000000..68d447dec --- /dev/null +++ b/keyboards/planck/keymaps/dudeofawesome/config.h | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | #ifndef CONFIG_USER_H | ||
| 2 | #define CONFIG_USER_H | ||
| 3 | |||
| 4 | #include "../../config.h" | ||
| 5 | |||
| 6 | #define WORKMAN_SOUND COLEMAK_SOUND | ||
| 7 | |||
| 8 | #ifdef AUDIO_ENABLE | ||
| 9 | #define STARTUP_SONG SONG(PLANCK_SOUND) | ||
| 10 | // #define STARTUP_SONG SONG(NO_SOUND) | ||
| 11 | |||
| 12 | #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ | ||
| 13 | SONG(COLEMAK_SOUND), \ | ||
| 14 | SONG(DVORAK_SOUND) \ | ||
| 15 | } | ||
| 16 | #endif | ||
| 17 | |||
| 18 | #define MUSIC_MASK (keycode != KC_NO) | ||
| 19 | |||
| 20 | /* | ||
| 21 | * MIDI options | ||
| 22 | */ | ||
| 23 | |||
| 24 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 25 | //#define MIDI_ENABLE_STRICT 1 | ||
| 26 | |||
| 27 | /* enable basic MIDI features: | ||
| 28 | - MIDI notes can be sent when in Music mode is on | ||
| 29 | */ | ||
| 30 | |||
| 31 | // #define MIDI_BASIC | ||
| 32 | |||
| 33 | /* enable advanced MIDI features: | ||
| 34 | - MIDI notes can be added to the keymap | ||
| 35 | - Octave shift and transpose | ||
| 36 | - Virtual sustain, portamento, and modulation wheel | ||
| 37 | - etc. | ||
| 38 | */ | ||
| 39 | //#define MIDI_ADVANCED | ||
| 40 | |||
| 41 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 42 | //#define MIDI_TONE_KEYCODE_OCTAVES 2 | ||
| 43 | |||
| 44 | #define RGB_DI_PIN B2 // The pin the LED strip is connected to (PB2 by default) | ||
| 45 | #define RGBLED_NUM 3 // Number of LEDs in your strip | ||
| 46 | #define RGBLIGHT_ANIMATIONS | ||
| 47 | |||
| 48 | #endif | ||
diff --git a/keyboards/planck/keymaps/dudeofawesome/keymap.c b/keyboards/planck/keymaps/dudeofawesome/keymap.c new file mode 100644 index 000000000..3fa739908 --- /dev/null +++ b/keyboards/planck/keymaps/dudeofawesome/keymap.c | |||
| @@ -0,0 +1,191 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 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 "planck.h" | ||
| 18 | #include "action_layer.h" | ||
| 19 | #include "eeconfig.h" | ||
| 20 | |||
| 21 | extern keymap_config_t keymap_config; | ||
| 22 | |||
| 23 | enum planck_layers { | ||
| 24 | _QWERTY, | ||
| 25 | _DVORAK, | ||
| 26 | _WORKMAN, | ||
| 27 | _LOWER, | ||
| 28 | _RAISE, | ||
| 29 | _ADJUST | ||
| 30 | }; | ||
| 31 | |||
| 32 | enum planck_keycodes { | ||
| 33 | QWERTY = SAFE_RANGE, | ||
| 34 | DVORAK, | ||
| 35 | WORKMAN, | ||
| 36 | LOWER, | ||
| 37 | RAISE, | ||
| 38 | BACKLIT | ||
| 39 | }; | ||
| 40 | |||
| 41 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 42 | |||
| 43 | /* Qwerty | ||
| 44 | * ,-----------------------------------------------------------------------------------. | ||
| 45 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp | | ||
| 46 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 47 | * | Esc | A | S | D | F | G | H | J | K | L | ; |Enter | | ||
| 48 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 49 | * | Shift| Z | X | C | V | B | N | M | , | . | / | ' | | ||
| 50 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 51 | * | RGB | Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | ||
| 52 | * `-----------------------------------------------------------------------------------' | ||
| 53 | */ | ||
| 54 | [_QWERTY] = { | ||
| 55 | {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC }, | ||
| 56 | {KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT }, | ||
| 57 | {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, RSFT_T(KC_ENT)}, | ||
| 58 | {RGB_TOG, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT } | ||
| 59 | }, | ||
| 60 | |||
| 61 | /* Dvorak | ||
| 62 | * ,-----------------------------------------------------------------------------------. | ||
| 63 | * | Tab | " | , | . | P | Y | F | G | C | R | L | Bksp | | ||
| 64 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 65 | * | Esc | A | O | E | U | I | D | H | T | N | S |Enter | | ||
| 66 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 67 | * | Shift| ; | Q | J | K | X | B | M | W | V | Z | / | | ||
| 68 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 69 | * | RGB | Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | ||
| 70 | * `-----------------------------------------------------------------------------------' | ||
| 71 | */ | ||
| 72 | [_DVORAK] = { | ||
| 73 | {KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC }, | ||
| 74 | {KC_ESC, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH }, | ||
| 75 | {KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, RSFT_T(KC_ENT)}, | ||
| 76 | {RGB_TOG, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT } | ||
| 77 | }, | ||
| 78 | |||
| 79 | /* Workman | ||
| 80 | * ,-----------------------------------------------------------------------------------. | ||
| 81 | * | Tab | Q | W | R | W | B | J | F | U | P | ; | Bksp | | ||
| 82 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 83 | * | Esc | A | S | H | T | G | Y | N | E | O | I |Enter | | ||
| 84 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 85 | * | Shift| Z | X | M | C | V | K | L | , | . | / | ' | | ||
| 86 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 87 | * | RGB | Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | ||
| 88 | * `-----------------------------------------------------------------------------------' | ||
| 89 | */ | ||
| 90 | [_WORKMAN] = { | ||
| 91 | {KC_TAB, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_BSPC }, | ||
| 92 | {KC_ESC, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_QUOT }, | ||
| 93 | {KC_LSFT, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, RSFT_T(KC_ENT)}, | ||
| 94 | {RGB_TOG, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT } | ||
| 95 | }, | ||
| 96 | |||
| 97 | /* Lower | ||
| 98 | * ,-----------------------------------------------------------------------------------. | ||
| 99 | * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp | | ||
| 100 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 101 | * | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | | | ||
| 102 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 103 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | | | ||
| 104 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 105 | * | | | | | | | | Play | Vol- | Vol+ | Next | | ||
| 106 | * `-----------------------------------------------------------------------------------' | ||
| 107 | */ | ||
| 108 | [_LOWER] = { | ||
| 109 | {KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC}, | ||
| 110 | {_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE}, | ||
| 111 | {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, S(KC_NUHS), S(KC_NUBS), KC_HOME, KC_END, _______}, | ||
| 112 | {_______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLD, KC_VOLU, KC_MNXT} | ||
| 113 | }, | ||
| 114 | |||
| 115 | /* Raise | ||
| 116 | * ,-----------------------------------------------------------------------------------. | ||
| 117 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp | | ||
| 118 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 119 | * | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ | | ||
| 120 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 121 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / |Pg Up |Pg Dn | | | ||
| 122 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 123 | * | | | | | | | | Play | Vol- | Vol+ | Next | | ||
| 124 | * `-----------------------------------------------------------------------------------' | ||
| 125 | */ | ||
| 126 | [_RAISE] = { | ||
| 127 | {KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC}, | ||
| 128 | {_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS}, | ||
| 129 | {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______}, | ||
| 130 | {_______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLD, KC_VOLU, KC_MNXT} | ||
| 131 | }, | ||
| 132 | |||
| 133 | /* Adjust (Lower + Raise) | ||
| 134 | * ,-----------------------------------------------------------------------------------. | ||
| 135 | * | | Reset| | | | | | | | | | Del | | ||
| 136 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 137 | * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Wrkman|Dvorak| | | | ||
| 138 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 139 | * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | | | ||
| 140 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 141 | * | | | | | | | | | | | | | ||
| 142 | * `-----------------------------------------------------------------------------------' | ||
| 143 | */ | ||
| 144 | [_ADJUST] = { | ||
| 145 | {_______, RESET, DEBUG, _______, _______, _______, _______, TERM_ON, TERM_OFF,_______, _______, KC_DEL }, | ||
| 146 | {_______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, WORKMAN, DVORAK, _______, _______}, | ||
| 147 | {_______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, RGB_M_R, _______, _______, _______, _______}, | ||
| 148 | {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} | ||
| 149 | } | ||
| 150 | |||
| 151 | }; | ||
| 152 | |||
| 153 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 154 | switch (keycode) { | ||
| 155 | case QWERTY: | ||
| 156 | if (record->event.pressed) { | ||
| 157 | print("mode just switched to qwerty and this is a huge string\n"); | ||
| 158 | set_single_persistent_default_layer(_QWERTY); | ||
| 159 | } | ||
| 160 | return false; | ||
| 161 | case WORKMAN: | ||
| 162 | if (record->event.pressed) { | ||
| 163 | set_single_persistent_default_layer(_WORKMAN); | ||
| 164 | } | ||
| 165 | return false; | ||
| 166 | case DVORAK: | ||
| 167 | if (record->event.pressed) { | ||
| 168 | set_single_persistent_default_layer(_DVORAK); | ||
| 169 | } | ||
| 170 | return false; | ||
| 171 | case LOWER: | ||
| 172 | if (record->event.pressed) { | ||
| 173 | layer_on(_LOWER); | ||
| 174 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 175 | } else { | ||
| 176 | layer_off(_LOWER); | ||
| 177 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 178 | } | ||
| 179 | return false; | ||
| 180 | case RAISE: | ||
| 181 | if (record->event.pressed) { | ||
| 182 | layer_on(_RAISE); | ||
| 183 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 184 | } else { | ||
| 185 | layer_off(_RAISE); | ||
| 186 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 187 | } | ||
| 188 | return false; | ||
| 189 | } | ||
| 190 | return true; | ||
| 191 | } | ||
diff --git a/keyboards/planck/keymaps/dudeofawesome/readme.md b/keyboards/planck/keymaps/dudeofawesome/readme.md new file mode 100644 index 000000000..7dccbaabc --- /dev/null +++ b/keyboards/planck/keymaps/dudeofawesome/readme.md | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # DudeOfAwesome's Planck Layout | ||
| 2 | |||
| 3 | A basic Planck layout with simultaneous RGB and audio support. | ||
| 4 | |||
| 5 |  | ||
| 6 | |||
| 7 | ## Features | ||
| 8 | |||
| 9 | - Base Layers | ||
| 10 | - QWERTY | ||
| 11 | - Workman | ||
| 12 | - Dvorak | ||
| 13 | - Audio | ||
| 14 | - WS2812b RGB backlight | ||
| 15 | |||
| 16 | ## Building and flashing | ||
| 17 | |||
| 18 | 1. Put your board in DFU mode with either the button on the bottom, or with a software key in your current firmware | ||
| 19 | 1. Flash: | ||
| 20 | ```bash | ||
| 21 | $ make make planck/rev4:dudeofawesome:dfu | ||
| 22 | ``` | ||
diff --git a/keyboards/planck/keymaps/dudeofawesome/rules.mk b/keyboards/planck/keymaps/dudeofawesome/rules.mk new file mode 100644 index 000000000..42c370aa1 --- /dev/null +++ b/keyboards/planck/keymaps/dudeofawesome/rules.mk | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | ifndef QUANTUM_DIR | ||
| 2 | include ../../../../Makefile | ||
| 3 | endif | ||
| 4 | |||
| 5 | AUDIO_ENABLE = yes # Audio output on port C6 | ||
| 6 | CONSOLE_ENABLE = no # Console for debug(+400) | ||
| 7 | MIDI_ENABLE = no # MIDI controls | ||
| 8 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | ||
| 9 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 10 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | ||
