diff options
| author | Přemysl Eric Janouch <40222273+pjanx@users.noreply.github.com> | 2021-10-27 02:56:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-26 17:56:38 -0700 |
| commit | b29f0059360ae760d2c7215b72327a9b8050b0ff (patch) | |
| tree | e2eb8f12a475385d70604b6a91a0b47e08914fa9 | |
| parent | e5a729ccabf4c261a697dae22c5315fb1ae9990b (diff) | |
| download | qmk_firmware-b29f0059360ae760d2c7215b72327a9b8050b0ff.tar.gz qmk_firmware-b29f0059360ae760d2c7215b72327a9b8050b0ff.zip | |
[Keymap] Add planck/pjanx and keebio/nyquist/pjanx keymaps (#13115)
| -rw-r--r-- | keyboards/keebio/nyquist/keymaps/pjanx/config.h | 31 | ||||
| -rw-r--r-- | keyboards/keebio/nyquist/keymaps/pjanx/keymap.c | 113 | ||||
| -rw-r--r-- | keyboards/keebio/nyquist/keymaps/pjanx/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pjanx/config.h | 49 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pjanx/keymap.c | 354 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pjanx/readme.md | 2 | ||||
| -rw-r--r-- | keyboards/planck/keymaps/pjanx/rules.mk | 2 |
7 files changed, 553 insertions, 0 deletions
diff --git a/keyboards/keebio/nyquist/keymaps/pjanx/config.h b/keyboards/keebio/nyquist/keymaps/pjanx/config.h new file mode 100644 index 000000000..ef1c4a51a --- /dev/null +++ b/keyboards/keebio/nyquist/keymaps/pjanx/config.h | |||
| @@ -0,0 +1,31 @@ | |||
| 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 | #pragma once | ||
| 19 | |||
| 20 | // #define USE_I2C | ||
| 21 | |||
| 22 | /* Select hand configuration */ | ||
| 23 | // #define MASTER_RIGHT | ||
| 24 | // #define EE_HANDS | ||
| 25 | |||
| 26 | #undef RGBLED_NUM | ||
| 27 | #define RGBLIGHT_ANIMATIONS | ||
| 28 | #define RGBLED_NUM 12 | ||
| 29 | #define RGBLIGHT_HUE_STEP 8 | ||
| 30 | #define RGBLIGHT_SAT_STEP 8 | ||
| 31 | #define RGBLIGHT_VAL_STEP 8 | ||
diff --git a/keyboards/keebio/nyquist/keymaps/pjanx/keymap.c b/keyboards/keebio/nyquist/keymaps/pjanx/keymap.c new file mode 100644 index 000000000..44a30063b --- /dev/null +++ b/keyboards/keebio/nyquist/keymaps/pjanx/keymap.c | |||
| @@ -0,0 +1,113 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Copyright 2021 Přemysl Eric Janouch | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 19 | |||
| 20 | enum planck_layers { | ||
| 21 | _QWERTY, | ||
| 22 | _LOWER, | ||
| 23 | _RAISE, | ||
| 24 | _ADJUST | ||
| 25 | }; | ||
| 26 | |||
| 27 | enum planck_keycodes { | ||
| 28 | UNUSED = SAFE_RANGE | ||
| 29 | }; | ||
| 30 | |||
| 31 | #define LOWER MO(_LOWER) | ||
| 32 | #define RAISE MO(_RAISE) | ||
| 33 | |||
| 34 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 35 | |||
| 36 | /* Qwerty | ||
| 37 | * ,-----------------------------------------------------------------------------------. | ||
| 38 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp | | ||
| 39 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 40 | * |LCtrl | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 41 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 42 | * |LShift| Z | X | C | V | B | N | M | , | . | / |RShift| | ||
| 43 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 44 | * | Esc | Caps | LGUI | LAlt |Lower | Space |Raise | RAlt | Down | Up |Enter | | ||
| 45 | * `-----------------------------------------------------------------------------------' | ||
| 46 | */ | ||
| 47 | [_QWERTY] = LAYOUT_ortho_4x12( | ||
| 48 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
| 49 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 50 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 51 | KC_ESC, KC_CAPS, KC_LGUI, KC_LALT, LOWER, KC_SPC, KC_SPC, RAISE, KC_RALT, KC_DOWN, KC_UP, KC_ENT | ||
| 52 | ), | ||
| 53 | |||
| 54 | /* Lower | ||
| 55 | * ,-----------------------------------------------------------------------------------. | ||
| 56 | * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Ins | | ||
| 57 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 58 | * |RCtrl | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | | | ||
| 59 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 60 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | | | ||
| 61 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 62 | * | | RGUI | | | | | | Left | Vol- | Vol+ | Right| | ||
| 63 | * `-----------------------------------------------------------------------------------' | ||
| 64 | */ | ||
| 65 | [_LOWER] = LAYOUT_ortho_4x12( | ||
| 66 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_INS, | ||
| 67 | KC_RCTL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, | ||
| 68 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),KC_HOME, KC_END, _______, | ||
| 69 | _______, KC_RGUI, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_VOLD, KC_VOLU, KC_RGHT | ||
| 70 | ), | ||
| 71 | |||
| 72 | /* Raise | ||
| 73 | * ,-----------------------------------------------------------------------------------. | ||
| 74 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Del | | ||
| 75 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 76 | * |RCtrl | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ | | ||
| 77 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 78 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | PgDn | PgUp | | | ||
| 79 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 80 | * | | App | | | | | | Left | Vol- | Vol+ | Right| | ||
| 81 | * `-----------------------------------------------------------------------------------' | ||
| 82 | */ | ||
| 83 | [_RAISE] = LAYOUT_ortho_4x12( | ||
| 84 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL, | ||
| 85 | KC_RCTL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 86 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGDN, KC_PGUP, _______, | ||
| 87 | _______, KC_APP, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_VOLD, KC_VOLU, KC_RGHT | ||
| 88 | ), | ||
| 89 | |||
| 90 | /* Adjust (Lower + Raise) | ||
| 91 | * v------------------------RGB CONTROL--------------------v | ||
| 92 | * ,-----------------------------------------------------------------------------------. | ||
| 93 | * | | Reset|Debug | RGB |RGBMOD| HUE+ | HUE- | SAT+ | SAT- |BRGTH+|BRGTH-| Del | | ||
| 94 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 95 | * | | |MUSmod|Aud on|Audoff|AGnorm|AGswap| | | | | | | ||
| 96 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 97 | * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof|TermOn|TermOf| | | | | ||
| 98 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 99 | * | M1 | M2 | M3 | | | | | <- | vv | ^^ | -> | | ||
| 100 | * `-----------------------------------------------------------------------------------' | ||
| 101 | */ | ||
| 102 | [_ADJUST] = LAYOUT_ortho_4x12( | ||
| 103 | _______, RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL , | ||
| 104 | _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, _______, _______, _______, _______, _______, | ||
| 105 | _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______, | ||
| 106 | KC_MS_BTN1, KC_MS_BTN2, KC_MS_BTN3, _______, _______, _______, _______, _______, KC_MS_LEFT, KC_MS_DOWN, KC_MS_UP, KC_MS_RIGHT | ||
| 107 | ) | ||
| 108 | |||
| 109 | }; | ||
| 110 | |||
| 111 | layer_state_t layer_state_set_user(layer_state_t state) { | ||
| 112 | return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST); | ||
| 113 | } | ||
diff --git a/keyboards/keebio/nyquist/keymaps/pjanx/rules.mk b/keyboards/keebio/nyquist/keymaps/pjanx/rules.mk new file mode 100644 index 000000000..31710b101 --- /dev/null +++ b/keyboards/keebio/nyquist/keymaps/pjanx/rules.mk | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | RGBLIGHT_ENABLE = yes | ||
| 2 | MOUSEKEY_ENABLE = yes | ||
diff --git a/keyboards/planck/keymaps/pjanx/config.h b/keyboards/planck/keymaps/pjanx/config.h new file mode 100644 index 000000000..b38db026e --- /dev/null +++ b/keyboards/planck/keymaps/pjanx/config.h | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | /* Copyright 2015-2018 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 | #pragma once | ||
| 18 | |||
| 19 | #ifdef AUDIO_ENABLE | ||
| 20 | #define STARTUP_SONG SONG(PLANCK_SOUND) | ||
| 21 | // #define STARTUP_SONG SONG(NO_SOUND) | ||
| 22 | |||
| 23 | #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ | ||
| 24 | SONG(COLEMAK_SOUND), \ | ||
| 25 | SONG(DVORAK_SOUND) \ | ||
| 26 | } | ||
| 27 | #endif | ||
| 28 | |||
| 29 | /* | ||
| 30 | * MIDI options | ||
| 31 | */ | ||
| 32 | |||
| 33 | /* enable basic MIDI features: | ||
| 34 | - MIDI notes can be sent when in Music mode is on | ||
| 35 | */ | ||
| 36 | |||
| 37 | #define MIDI_BASIC | ||
| 38 | |||
| 39 | /* enable advanced MIDI features: | ||
| 40 | - MIDI notes can be added to the keymap | ||
| 41 | - Octave shift and transpose | ||
| 42 | - Virtual sustain, portamento, and modulation wheel | ||
| 43 | - etc. | ||
| 44 | */ | ||
| 45 | //#define MIDI_ADVANCED | ||
| 46 | |||
| 47 | // Most tactile encoders have detents every 4 stages | ||
| 48 | #define ENCODER_RESOLUTION 4 | ||
| 49 | |||
diff --git a/keyboards/planck/keymaps/pjanx/keymap.c b/keyboards/planck/keymaps/pjanx/keymap.c new file mode 100644 index 000000000..cf2e52623 --- /dev/null +++ b/keyboards/planck/keymaps/pjanx/keymap.c | |||
| @@ -0,0 +1,354 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * Copyright 2021 Přemysl Eric Janouch | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 19 | #include "muse.h" | ||
| 20 | |||
| 21 | |||
| 22 | enum planck_layers { | ||
| 23 | _QWERTY, | ||
| 24 | _COLEMAK, | ||
| 25 | _DVORAK, | ||
| 26 | _LOWER, | ||
| 27 | _RAISE, | ||
| 28 | _PLOVER, | ||
| 29 | _ADJUST | ||
| 30 | }; | ||
| 31 | |||
| 32 | enum planck_keycodes { | ||
| 33 | QWERTY = SAFE_RANGE, | ||
| 34 | COLEMAK, | ||
| 35 | DVORAK, | ||
| 36 | PLOVER, | ||
| 37 | BACKLIT, | ||
| 38 | EXT_PLV | ||
| 39 | }; | ||
| 40 | |||
| 41 | #define LOWER MO(_LOWER) | ||
| 42 | #define RAISE MO(_RAISE) | ||
| 43 | |||
| 44 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 45 | |||
| 46 | /* Qwerty | ||
| 47 | * ,-----------------------------------------------------------------------------------. | ||
| 48 | * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp | | ||
| 49 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 50 | * |LCtrl | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 51 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 52 | * |LShift| Z | X | C | V | B | N | M | , | . | / |RShift| | ||
| 53 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 54 | * | Esc | Caps | LGUI | LAlt |Lower | Space |Raise | RAlt | Down | Up |Enter | | ||
| 55 | * `-----------------------------------------------------------------------------------' | ||
| 56 | */ | ||
| 57 | [_QWERTY] = LAYOUT_planck_grid( | ||
| 58 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
| 59 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 60 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 61 | KC_ESC, KC_CAPS, KC_LGUI, KC_LALT, LOWER, KC_SPC, KC_SPC, RAISE, KC_RALT, KC_DOWN, KC_UP, KC_ENT | ||
| 62 | ), | ||
| 63 | |||
| 64 | /* Colemak | ||
| 65 | * ,-----------------------------------------------------------------------------------. | ||
| 66 | * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp | | ||
| 67 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 68 | * | Esc | A | R | S | T | D | H | N | E | I | O | " | | ||
| 69 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 70 | * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter | | ||
| 71 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 72 | * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | ||
| 73 | * `-----------------------------------------------------------------------------------' | ||
| 74 | */ | ||
| 75 | [_COLEMAK] = LAYOUT_planck_grid( | ||
| 76 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, | ||
| 77 | KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, | ||
| 78 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT , | ||
| 79 | BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
| 80 | ), | ||
| 81 | |||
| 82 | /* Dvorak | ||
| 83 | * ,-----------------------------------------------------------------------------------. | ||
| 84 | * | Tab | " | , | . | P | Y | F | G | C | R | L | Bksp | | ||
| 85 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 86 | * | Esc | A | O | E | U | I | D | H | T | N | S | / | | ||
| 87 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 88 | * | Shift| ; | Q | J | K | X | B | M | W | V | Z |Enter | | ||
| 89 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 90 | * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | ||
| 91 | * `-----------------------------------------------------------------------------------' | ||
| 92 | */ | ||
| 93 | [_DVORAK] = LAYOUT_planck_grid( | ||
| 94 | KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC, | ||
| 95 | KC_ESC, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH, | ||
| 96 | KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_ENT , | ||
| 97 | BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT | ||
| 98 | ), | ||
| 99 | |||
| 100 | /* Lower | ||
| 101 | * ,-----------------------------------------------------------------------------------. | ||
| 102 | * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Ins | | ||
| 103 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 104 | * |RCtrl | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | | | ||
| 105 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 106 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | | | ||
| 107 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 108 | * | | RGUI | | | | | | Left | Vol- | Vol+ | Right| | ||
| 109 | * `-----------------------------------------------------------------------------------' | ||
| 110 | */ | ||
| 111 | [_LOWER] = LAYOUT_planck_grid( | ||
| 112 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_INS, | ||
| 113 | KC_RCTL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, | ||
| 114 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),KC_HOME, KC_END, _______, | ||
| 115 | _______, KC_RGUI, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_VOLD, KC_VOLU, KC_RGHT | ||
| 116 | ), | ||
| 117 | |||
| 118 | /* Raise | ||
| 119 | * ,-----------------------------------------------------------------------------------. | ||
| 120 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Del | | ||
| 121 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 122 | * |RCtrl | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ | | ||
| 123 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 124 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | PgDn | PgUp | | | ||
| 125 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 126 | * | | App | | | | | | Left | Vol- | Vol+ | Right| | ||
| 127 | * `-----------------------------------------------------------------------------------' | ||
| 128 | */ | ||
| 129 | [_RAISE] = LAYOUT_planck_grid( | ||
| 130 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL, | ||
| 131 | KC_RCTL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 132 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGDN, KC_PGUP, _______, | ||
| 133 | _______, KC_APP, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_VOLD, KC_VOLU, KC_RGHT | ||
| 134 | ), | ||
| 135 | |||
| 136 | /* Plover layer (http://opensteno.org) | ||
| 137 | * ,-----------------------------------------------------------------------------------. | ||
| 138 | * | # | # | # | # | # | # | # | # | # | # | # | # | | ||
| 139 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 140 | * | | S | T | P | H | * | * | F | P | L | T | D | | ||
| 141 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 142 | * | | S | K | W | R | * | * | R | B | G | S | Z | | ||
| 143 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 144 | * | Exit | | | A | O | | E | U | | | | | ||
| 145 | * `-----------------------------------------------------------------------------------' | ||
| 146 | */ | ||
| 147 | [_PLOVER] = LAYOUT_planck_grid( | ||
| 148 | KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1 , | ||
| 149 | XXXXXXX, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, | ||
| 150 | XXXXXXX, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 151 | EXT_PLV, XXXXXXX, XXXXXXX, KC_C, KC_V, XXXXXXX, XXXXXXX, KC_N, KC_M, XXXXXXX, XXXXXXX, XXXXXXX | ||
| 152 | ), | ||
| 153 | |||
| 154 | /* Adjust (Lower + Raise) | ||
| 155 | * v------------------------RGB CONTROL--------------------v | ||
| 156 | * ,-----------------------------------------------------------------------------------. | ||
| 157 | * | | Reset|Debug | RGB |RGBMOD| HUE+ | HUE- | SAT+ | SAT- |BRGTH+|BRGTH-| Del | | ||
| 158 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 159 | * | | |MUSmod|Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak|Plover| | | ||
| 160 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 161 | * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof|TermOn|TermOf| | | | | ||
| 162 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 163 | * | M1 | M2 | M3 | | | | | <- | vv | ^^ | -> | | ||
| 164 | * `-----------------------------------------------------------------------------------' | ||
| 165 | */ | ||
| 166 | [_ADJUST] = LAYOUT_planck_grid( | ||
| 167 | _______, RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL , | ||
| 168 | _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, PLOVER, _______, | ||
| 169 | _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______, | ||
| 170 | KC_MS_BTN1, KC_MS_BTN2, KC_MS_BTN3, _______, _______, _______, _______, _______, KC_MS_LEFT, KC_MS_DOWN, KC_MS_UP, KC_MS_RIGHT | ||
| 171 | ) | ||
| 172 | |||
| 173 | }; | ||
| 174 | |||
| 175 | #ifdef AUDIO_ENABLE | ||
| 176 | float plover_song[][2] = SONG(PLOVER_SOUND); | ||
| 177 | float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND); | ||
| 178 | #endif | ||
| 179 | |||
| 180 | layer_state_t layer_state_set_user(layer_state_t state) { | ||
| 181 | return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST); | ||
| 182 | } | ||
| 183 | |||
| 184 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 185 | switch (keycode) { | ||
| 186 | case QWERTY: | ||
| 187 | if (record->event.pressed) { | ||
| 188 | print("mode just switched to qwerty and this is a huge string\n"); | ||
| 189 | set_single_persistent_default_layer(_QWERTY); | ||
| 190 | } | ||
| 191 | return false; | ||
| 192 | break; | ||
| 193 | case COLEMAK: | ||
| 194 | if (record->event.pressed) { | ||
| 195 | set_single_persistent_default_layer(_COLEMAK); | ||
| 196 | } | ||
| 197 | return false; | ||
| 198 | break; | ||
| 199 | case DVORAK: | ||
| 200 | if (record->event.pressed) { | ||
| 201 | set_single_persistent_default_layer(_DVORAK); | ||
| 202 | } | ||
| 203 | return false; | ||
| 204 | break; | ||
| 205 | case BACKLIT: | ||
| 206 | if (record->event.pressed) { | ||
| 207 | register_code(KC_RSFT); | ||
| 208 | #ifdef BACKLIGHT_ENABLE | ||
| 209 | backlight_step(); | ||
| 210 | #endif | ||
| 211 | #ifdef KEYBOARD_planck_rev5 | ||
| 212 | writePinLow(E6); | ||
| 213 | #endif | ||
| 214 | } else { | ||
| 215 | unregister_code(KC_RSFT); | ||
| 216 | #ifdef KEYBOARD_planck_rev5 | ||
| 217 | writePinHigh(E6); | ||
| 218 | #endif | ||
| 219 | } | ||
| 220 | return false; | ||
| 221 | break; | ||
| 222 | case PLOVER: | ||
| 223 | if (record->event.pressed) { | ||
| 224 | #ifdef AUDIO_ENABLE | ||
| 225 | stop_all_notes(); | ||
| 226 | PLAY_SONG(plover_song); | ||
| 227 | #endif | ||
| 228 | layer_off(_RAISE); | ||
| 229 | layer_off(_LOWER); | ||
| 230 | layer_off(_ADJUST); | ||
| 231 | layer_on(_PLOVER); | ||
| 232 | if (!eeconfig_is_enabled()) { | ||
| 233 | eeconfig_init(); | ||
| 234 | } | ||
| 235 | keymap_config.raw = eeconfig_read_keymap(); | ||
| 236 | keymap_config.nkro = 1; | ||
| 237 | eeconfig_update_keymap(keymap_config.raw); | ||
| 238 | } | ||
| 239 | return false; | ||
| 240 | break; | ||
| 241 | case EXT_PLV: | ||
| 242 | if (record->event.pressed) { | ||
| 243 | #ifdef AUDIO_ENABLE | ||
| 244 | PLAY_SONG(plover_gb_song); | ||
| 245 | #endif | ||
| 246 | layer_off(_PLOVER); | ||
| 247 | } | ||
| 248 | return false; | ||
| 249 | break; | ||
| 250 | } | ||
| 251 | return true; | ||
| 252 | } | ||
| 253 | |||
| 254 | bool muse_mode = false; | ||
| 255 | uint8_t last_muse_note = 0; | ||
| 256 | uint16_t muse_counter = 0; | ||
| 257 | uint8_t muse_offset = 70; | ||
| 258 | uint16_t muse_tempo = 50; | ||
| 259 | |||
| 260 | bool encoder_update(bool clockwise) { | ||
| 261 | if (muse_mode) { | ||
| 262 | if (IS_LAYER_ON(_RAISE)) { | ||
| 263 | if (clockwise) { | ||
| 264 | muse_offset++; | ||
| 265 | } else { | ||
| 266 | muse_offset--; | ||
| 267 | } | ||
| 268 | } else { | ||
| 269 | if (clockwise) { | ||
| 270 | muse_tempo+=1; | ||
| 271 | } else { | ||
| 272 | muse_tempo-=1; | ||
| 273 | } | ||
| 274 | } | ||
| 275 | } else { | ||
| 276 | if (clockwise) { | ||
| 277 | #ifdef MOUSEKEY_ENABLE | ||
| 278 | tap_code(KC_MS_WH_DOWN); | ||
| 279 | #else | ||
| 280 | tap_code(KC_PGDN); | ||
| 281 | #endif | ||
| 282 | } else { | ||
| 283 | #ifdef MOUSEKEY_ENABLE | ||
| 284 | tap_code(KC_MS_WH_UP); | ||
| 285 | #else | ||
| 286 | tap_code(KC_PGUP); | ||
| 287 | #endif | ||
| 288 | } | ||
| 289 | } | ||
| 290 | return true; | ||
| 291 | } | ||
| 292 | |||
| 293 | bool dip_switch_update_user(uint8_t index, bool active) { | ||
| 294 | switch (index) { | ||
| 295 | case 0: { | ||
| 296 | #ifdef AUDIO_ENABLE | ||
| 297 | static bool play_sound = false; | ||
| 298 | #endif | ||
| 299 | if (active) { | ||
| 300 | #ifdef AUDIO_ENABLE | ||
| 301 | if (play_sound) { PLAY_SONG(plover_song); } | ||
| 302 | #endif | ||
| 303 | layer_on(_ADJUST); | ||
| 304 | } else { | ||
| 305 | #ifdef AUDIO_ENABLE | ||
| 306 | if (play_sound) { PLAY_SONG(plover_gb_song); } | ||
| 307 | #endif | ||
| 308 | layer_off(_ADJUST); | ||
| 309 | } | ||
| 310 | #ifdef AUDIO_ENABLE | ||
| 311 | play_sound = true; | ||
| 312 | #endif | ||
| 313 | break; | ||
| 314 | } | ||
| 315 | case 1: | ||
| 316 | if (active) { | ||
| 317 | muse_mode = true; | ||
| 318 | } else { | ||
| 319 | muse_mode = false; | ||
| 320 | } | ||
| 321 | } | ||
| 322 | return true; | ||
| 323 | } | ||
| 324 | |||
| 325 | void matrix_scan_user(void) { | ||
| 326 | #ifdef AUDIO_ENABLE | ||
| 327 | if (muse_mode) { | ||
| 328 | if (muse_counter == 0) { | ||
| 329 | uint8_t muse_note = muse_offset + SCALE[muse_clock_pulse()]; | ||
| 330 | if (muse_note != last_muse_note) { | ||
| 331 | stop_note(compute_freq_for_midi_note(last_muse_note)); | ||
| 332 | play_note(compute_freq_for_midi_note(muse_note), 0xF); | ||
| 333 | last_muse_note = muse_note; | ||
| 334 | } | ||
| 335 | } | ||
| 336 | muse_counter = (muse_counter + 1) % muse_tempo; | ||
| 337 | } else { | ||
| 338 | if (muse_counter) { | ||
| 339 | stop_all_notes(); | ||
| 340 | muse_counter = 0; | ||
| 341 | } | ||
| 342 | } | ||
| 343 | #endif | ||
| 344 | } | ||
| 345 | |||
| 346 | bool music_mask_user(uint16_t keycode) { | ||
| 347 | switch (keycode) { | ||
| 348 | case RAISE: | ||
| 349 | case LOWER: | ||
| 350 | return false; | ||
| 351 | default: | ||
| 352 | return true; | ||
| 353 | } | ||
| 354 | } | ||
diff --git a/keyboards/planck/keymaps/pjanx/readme.md b/keyboards/planck/keymaps/pjanx/readme.md new file mode 100644 index 000000000..e53397847 --- /dev/null +++ b/keyboards/planck/keymaps/pjanx/readme.md | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | # Modified Default Planck Layout | ||
| 2 | |||
diff --git a/keyboards/planck/keymaps/pjanx/rules.mk b/keyboards/planck/keymaps/pjanx/rules.mk new file mode 100644 index 000000000..3a551bd42 --- /dev/null +++ b/keyboards/planck/keymaps/pjanx/rules.mk | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | SRC += muse.c | ||
| 2 | MOUSEKEY_ENABLE = yes | ||
