diff options
| author | Žan Pevec <pevecyan@users.noreply.github.com> | 2018-10-17 01:56:39 +0200 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-10-16 16:56:39 -0700 |
| commit | 1f13254460db4ad4cb3c4868b69fbb35cca9c764 (patch) | |
| tree | 6a04b023442d0941ee073f0a4be171d13be90b0d | |
| parent | 1d03af876c122cf16ed78025eb753e1d838edcac (diff) | |
| download | qmk_firmware-1f13254460db4ad4cb3c4868b69fbb35cca9c764.tar.gz qmk_firmware-1f13254460db4ad4cb3c4868b69fbb35cca9c764.zip | |
Keymap: Personal keymap for planck (#4061)
* added my keymap
* Adde more changes
* Moved to pevecyan folder
* Added slovenian mapping
* Slovenian keymap completed
* Suggestions updates
* Fixes on slovenian keymap
Made some typos in previous iteration
| -rw-r--r-- | keyboards/planck/keymaps/pevecyan/config.h | 38 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pevecyan/keymap.c | 226 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pevecyan/readme.md | 2 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pevecyan/rules.mk | 1 |
4 files changed, 267 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/pevecyan/config.h b/keyboards/planck/keymaps/pevecyan/config.h new file mode 100644 index 000000000..e8c13caac --- /dev/null +++ b/keyboards/planck/keymaps/pevecyan/config.h | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #ifdef AUDIO_ENABLE | ||
| 4 | #define STARTUP_SONG SONG(PLANCK_SOUND) | ||
| 5 | // #define STARTUP_SONG SONG(NO_SOUND) | ||
| 6 | |||
| 7 | #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ | ||
| 8 | SONG(COLEMAK_SOUND), \ | ||
| 9 | SONG(DVORAK_SOUND) \ | ||
| 10 | } | ||
| 11 | #endif | ||
| 12 | |||
| 13 | /* | ||
| 14 | * MIDI options | ||
| 15 | */ | ||
| 16 | |||
| 17 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 18 | //#define MIDI_ENABLE_STRICT 1 | ||
| 19 | |||
| 20 | /* enable basic MIDI features: | ||
| 21 | - MIDI notes can be sent when in Music mode is on | ||
| 22 | */ | ||
| 23 | |||
| 24 | #define MIDI_BASIC | ||
| 25 | |||
| 26 | /* enable advanced MIDI features: | ||
| 27 | - MIDI notes can be added to the keymap | ||
| 28 | - Octave shift and transpose | ||
| 29 | - Virtual sustain, portamento, and modulation wheel | ||
| 30 | - etc. | ||
| 31 | */ | ||
| 32 | //#define MIDI_ADVANCED | ||
| 33 | |||
| 34 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 35 | //#define MIDI_TONE_KEYCODE_OCTAVES 2 | ||
| 36 | |||
| 37 | // Most tactile encoders have detents every 4 stages | ||
| 38 | #define ENCODER_RESOLUTION 4 | ||
diff --git a/keyboards/planck/keymaps/pevecyan/keymap.c b/keyboards/planck/keymaps/pevecyan/keymap.c new file mode 100644 index 000000000..7bc43a373 --- /dev/null +++ b/keyboards/planck/keymaps/pevecyan/keymap.c | |||
| @@ -0,0 +1,226 @@ | |||
| 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 QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | #include "action_layer.h" | ||
| 20 | #include "muse.h" | ||
| 21 | #include "keymap_slovenian.h" | ||
| 22 | |||
| 23 | extern keymap_config_t keymap_config; | ||
| 24 | |||
| 25 | enum planck_layers { | ||
| 26 | _QWERTY, | ||
| 27 | _LOWER, | ||
| 28 | _RAISE, | ||
| 29 | _ADJUST, | ||
| 30 | _ALTGR, | ||
| 31 | _CAPS | ||
| 32 | }; | ||
| 33 | |||
| 34 | enum planck_keycodes { | ||
| 35 | QWERTY = SAFE_RANGE, | ||
| 36 | }; | ||
| 37 | |||
| 38 | #define LOWER MO(_LOWER) | ||
| 39 | #define RAISE MO(_RAISE) | ||
| 40 | #define CAPS MO(_CAPS) | ||
| 41 | #define ALTGR MO(_ALTGR) | ||
| 42 | |||
| 43 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 44 | |||
| 45 | /* Qwerty | ||
| 46 | * ,-----------------------------------------------------------------------------------. | ||
| 47 | * | Tab | Q | W | E | R | T | Z | U | I | O | P | Bksp | | ||
| 48 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 49 | * | CAPS | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 50 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 51 | * | Shift| Y | X | C | V | B | N | M | , | . | / |Enter | | ||
| 52 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 53 | * | Ctrl | GUI | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | ||
| 54 | * `-----------------------------------------------------------------------------------' | ||
| 55 | */ | ||
| 56 | [_QWERTY] = LAYOUT_planck_grid( | ||
| 57 | KC_TAB, SI_Q, SI_W, SI_E, SI_R, SI_T, SI_Z, SI_U, SI_I, SI_O, SI_P, KC_BSPC, | ||
| 58 | CAPS, SI_A, SI_S, SI_D, SI_F, SI_G, SI_H, SI_J, SI_K, SI_L, KC_SCLN, KC_ENT, | ||
| 59 | KC_LSFT, SI_Y, SI_X, SI_C, SI_V, SI_B, SI_N, SI_M, SI_COMM, SI_DOT, SI_MINS, KC_RSFT , | ||
| 60 | KC_LCTL, KC_LGUI, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, ALTGR, KC_DOWN, KC_UP, KC_F5 | ||
| 61 | ), | ||
| 62 | |||
| 63 | /* Lower | ||
| 64 | * ,-----------------------------------------------------------------------------------. | ||
| 65 | * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp | | ||
| 66 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 67 | * | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | | | ||
| 68 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 69 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | | | ||
| 70 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 71 | * | | | | | | | | Next | Vol- | Vol+ | Play | | ||
| 72 | * `-----------------------------------------------------------------------------------' | ||
| 73 | */ | ||
| 74 | [_LOWER] = LAYOUT_planck_grid( | ||
| 75 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 76 | KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_MINS, KC_PPLS , KC_ENT, | ||
| 77 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, S(KC_NUHS), S(KC_NUBS), KC_HOME, KC_END, _______, | ||
| 78 | _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY | ||
| 79 | ), | ||
| 80 | |||
| 81 | /* Raise | ||
| 82 | * ,-----------------------------------------------------------------------------------. | ||
| 83 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp | | ||
| 84 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 85 | * | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ | | ||
| 86 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 87 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / |Pg Up |Pg Dn | | | ||
| 88 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 89 | * | | | | | | | | Next | Vol- | Vol+ | Play | | ||
| 90 | * `-----------------------------------------------------------------------------------' | ||
| 91 | */ | ||
| 92 | [_RAISE] = LAYOUT_planck_grid( | ||
| 93 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
| 94 | KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 95 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______, | ||
| 96 | _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY | ||
| 97 | ), | ||
| 98 | |||
| 99 | /* Adjust (Lower + Raise) | ||
| 100 | * ,-----------------------------------------------------------------------------------. | ||
| 101 | * | | Reset| | | | | | | | | | Del | | ||
| 102 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 103 | * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak|Plover| | | ||
| 104 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 105 | * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | | | ||
| 106 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 107 | * | | | | | | | | | | | | | ||
| 108 | * `-----------------------------------------------------------------------------------' | ||
| 109 | */ | ||
| 110 | [_ADJUST] = LAYOUT_planck_grid( | ||
| 111 | _______, RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL , | ||
| 112 | _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, _______, _______, _______, _______, | ||
| 113 | _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______, | ||
| 114 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 115 | ), | ||
| 116 | |||
| 117 | [_ALTGR] = LAYOUT_planck_grid( | ||
| 118 | _______, ALTG(KC_Q), ALTG(KC_W), ALTG(KC_E), _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 119 | _______, _______, _______, _______, ALTG(KC_F), ALTG(KC_G), _______, _______, _______, _______, _______, _______, | ||
| 120 | _______, _______, _______, _______, ALTG(KC_V), ALTG(KC_B), ALTG(KC_N), _______, ALTG(KC_COMM), ALTG(KC_DOT), _______, _______ , | ||
| 121 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 122 | ), | ||
| 123 | |||
| 124 | [_CAPS] = LAYOUT_planck_grid( | ||
| 125 | KC_ESC , KC_BSPC, KC_UP , KC_DEL , _______, _______, _______, _______, _______, _______, _______, KC_DEL , | ||
| 126 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 127 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 128 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 129 | ) | ||
| 130 | |||
| 131 | |||
| 132 | }; | ||
| 133 | |||
| 134 | #ifdef AUDIO_ENABLE | ||
| 135 | float plover_song[][2] = SONG(PLOVER_SOUND); | ||
| 136 | float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND); | ||
| 137 | #endif | ||
| 138 | |||
| 139 | uint32_t layer_state_set_user(uint32_t state) { | ||
| 140 | return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST); | ||
| 141 | } | ||
| 142 | |||
| 143 | bool muse_mode = false; | ||
| 144 | uint8_t last_muse_note = 0; | ||
| 145 | uint16_t muse_counter = 0; | ||
| 146 | uint8_t muse_offset = 70; | ||
| 147 | uint16_t muse_tempo = 50; | ||
| 148 | |||
| 149 | void encoder_update(bool clockwise) { | ||
| 150 | if (muse_mode) { | ||
| 151 | if (IS_LAYER_ON(_RAISE)) { | ||
| 152 | if (clockwise) { | ||
| 153 | muse_offset++; | ||
| 154 | } else { | ||
| 155 | muse_offset--; | ||
| 156 | } | ||
| 157 | } else { | ||
| 158 | if (clockwise) { | ||
| 159 | muse_tempo+=1; | ||
| 160 | } else { | ||
| 161 | muse_tempo-=1; | ||
| 162 | } | ||
| 163 | } | ||
| 164 | } else { | ||
| 165 | if (clockwise) { | ||
| 166 | register_code(KC_PGDN); | ||
| 167 | unregister_code(KC_PGDN); | ||
| 168 | } else { | ||
| 169 | register_code(KC_PGUP); | ||
| 170 | unregister_code(KC_PGUP); | ||
| 171 | } | ||
| 172 | } | ||
| 173 | } | ||
| 174 | |||
| 175 | void dip_update(uint8_t index, bool active) { | ||
| 176 | switch (index) { | ||
| 177 | case 0: | ||
| 178 | if (active) { | ||
| 179 | #ifdef AUDIO_ENABLE | ||
| 180 | PLAY_SONG(plover_song); | ||
| 181 | #endif | ||
| 182 | layer_on(_ADJUST); | ||
| 183 | } else { | ||
| 184 | #ifdef AUDIO_ENABLE | ||
| 185 | PLAY_SONG(plover_gb_song); | ||
| 186 | #endif | ||
| 187 | layer_off(_ADJUST); | ||
| 188 | } | ||
| 189 | break; | ||
| 190 | case 1: | ||
| 191 | if (active) { | ||
| 192 | muse_mode = true; | ||
| 193 | } else { | ||
| 194 | muse_mode = false; | ||
| 195 | #ifdef AUDIO_ENABLE | ||
| 196 | stop_all_notes(); | ||
| 197 | #endif | ||
| 198 | } | ||
| 199 | } | ||
| 200 | } | ||
| 201 | |||
| 202 | void matrix_scan_user(void) { | ||
| 203 | #ifdef AUDIO_ENABLE | ||
| 204 | if (muse_mode) { | ||
| 205 | if (muse_counter == 0) { | ||
| 206 | uint8_t muse_note = muse_offset + SCALE[muse_clock_pulse()]; | ||
| 207 | if (muse_note != last_muse_note) { | ||
| 208 | stop_note(compute_freq_for_midi_note(last_muse_note)); | ||
| 209 | play_note(compute_freq_for_midi_note(muse_note), 0xF); | ||
| 210 | last_muse_note = muse_note; | ||
| 211 | } | ||
| 212 | } | ||
| 213 | muse_counter = (muse_counter + 1) % muse_tempo; | ||
| 214 | } | ||
| 215 | #endif | ||
| 216 | } | ||
| 217 | |||
| 218 | bool music_mask_user(uint16_t keycode) { | ||
| 219 | switch (keycode) { | ||
| 220 | case RAISE: | ||
| 221 | case LOWER: | ||
| 222 | return false; | ||
| 223 | default: | ||
| 224 | return true; | ||
| 225 | } | ||
| 226 | } | ||
diff --git a/keyboards/planck/keymaps/pevecyan/readme.md b/keyboards/planck/keymaps/pevecyan/readme.md new file mode 100644 index 000000000..de9680b49 --- /dev/null +++ b/keyboards/planck/keymaps/pevecyan/readme.md | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | # The Default Planck Layout | ||
| 2 | |||
diff --git a/keyboards/planck/keymaps/pevecyan/rules.mk b/keyboards/planck/keymaps/pevecyan/rules.mk new file mode 100644 index 000000000..dcf16bef3 --- /dev/null +++ b/keyboards/planck/keymaps/pevecyan/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| SRC += muse.c | |||
