[Keymap Removal] Planck and related keymaps. (#22683)
This commit is contained in:
parent
f0e4bc937a
commit
7ea022ba88
956 changed files with 0 additions and 85970 deletions
|
@ -1,8 +0,0 @@
|
|||
#ifndef CONFIG_USER_H
|
||||
#define CONFIG_USER_H
|
||||
|
||||
#include "../../config.h"
|
||||
|
||||
// place overrides here
|
||||
|
||||
#endif
|
|
@ -1,108 +0,0 @@
|
|||
#include QMK_KEYBOARD_H
|
||||
|
||||
enum miuni32_layers {
|
||||
_BEAKL,
|
||||
_LOWER,
|
||||
_RAISE,
|
||||
_UNION
|
||||
};
|
||||
|
||||
enum miuni32_keycodes {
|
||||
BEAKL = SAFE_RANGE,
|
||||
LOWER,
|
||||
RAISE
|
||||
};
|
||||
|
||||
#define SPC_SHF SFT_T(KC_SPC)
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/* Level 0: BEAKL
|
||||
* ,---------------------------------------------------------------------------------------.
|
||||
* | J | H | O | U | K | LOWER | G | C | R | F | Z |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | Q | I | E | A | Y | RAISE | D | S | T | N | B |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | / | , | ' | . | X |SPC\SHF| W | M | L | P | V |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
*/
|
||||
[_BEAKL] = LAYOUT_ortho_3x11(
|
||||
KC_J, KC_H, KC_O, KC_U, KC_K, LOWER, KC_G, KC_C, KC_R, KC_F, KC_Z,
|
||||
KC_Q, KC_I, KC_E, KC_A, KC_Y, RAISE, KC_D, KC_S, KC_T, KC_N, KC_B,
|
||||
KC_SLSH, KC_COMM, KC_QUOT, KC_DOT, KC_X, SPC_SHF, KC_W, KC_M, KC_L, KC_P, KC_V
|
||||
),
|
||||
/* Lower
|
||||
* ,---------------------------------------------------------------------------------------.
|
||||
* | Tab | { | _ | } | & | | Gui | [ | % | ] | Bkspc |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | \ | ( | 1 | ) | # | | $ | < | 0 | > | | |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | 5 | 4 | 3 | 2 | Ctl | | Alt | 9 | 8 | 7 | 6 |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
*/
|
||||
[_LOWER] = LAYOUT_ortho_3x11(
|
||||
KC_TAB, KC_LCBR, KC_UNDS, KC_RBRC, KC_AMPR, _______, KC_RGUI, KC_LBRC, KC_PERC, KC_RBRC, KC_BSPC,
|
||||
KC_BSLS, KC_LPRN, KC_1, KC_RPRN, KC_HASH, _______, KC_DLR, KC_LT, KC_0, KC_GT, KC_PIPE,
|
||||
KC_5, KC_4, KC_3, KC_2, KC_LCTL, _______, KC_RALT, KC_9, KC_8, KC_7, KC_6
|
||||
),
|
||||
/* Raise
|
||||
* ,---------------------------------------------------------------------------------------.
|
||||
* | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | F11 | F12 | ! | - | + | | = | ; | ) | ` | ? |
|
||||
* |------------------------------- -------------------------------------------------------|
|
||||
* | % | $ | # | @ | | | | ( | * | & | ^ |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
*/
|
||||
[_RAISE] = LAYOUT_ortho_3x11(
|
||||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10,
|
||||
KC_F11, KC_F12, KC_EXLM, KC_MINS, KC_PLUS, _______, KC_EQL, KC_SCLN, KC_RPRN, KC_GRV, KC_QUES,
|
||||
KC_PERC, KC_DLR, KC_HASH, KC_AT, _______, _______, _______, KC_LPRN, KC_ASTR, KC_AMPR, KC_CIRC
|
||||
),
|
||||
/* Union
|
||||
* ,---------------------------------------------------------------------------------------.
|
||||
* | QK_BOOT | | | | | | | | | | Del |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | | | | | | | | | | | |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
* | | | | | | | | | | | |
|
||||
* |---------------------------------------------------------------------------------------|
|
||||
*/
|
||||
[_UNION] = LAYOUT_ortho_3x11(
|
||||
QK_BOOT, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
};
|
||||
|
||||
//planck like tri layer
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case BEAKL:
|
||||
if (record->event.pressed) {
|
||||
set_single_persistent_default_layer(_BEAKL);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case LOWER:
|
||||
if (record->event.pressed) {
|
||||
layer_on(_LOWER);
|
||||
update_tri_layer(_LOWER, _RAISE, _UNION);
|
||||
} else {
|
||||
layer_off(_LOWER);
|
||||
update_tri_layer(_LOWER, _RAISE, _UNION);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case RAISE:
|
||||
if (record->event.pressed) {
|
||||
layer_on(_RAISE);
|
||||
update_tri_layer(_LOWER, _RAISE, _UNION);
|
||||
} else {
|
||||
layer_off(_RAISE);
|
||||
update_tri_layer(_LOWER, _RAISE, _UNION);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
# A BEAKL9-ish keymap for miuni32
|
||||
A major WIP
|
||||
Using planck like tri layer switching with a single center control column
|
||||
No mousekey support
|
|
@ -1,18 +0,0 @@
|
|||
# Build Options
|
||||
# change to "no" to disable the options, or define them in the Makefile in
|
||||
# the appropriate keymap folder that will get included automatically
|
||||
#
|
||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
||||
MOUSEKEY_ENABLE = no # Mouse keys(+4700)
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
MIDI_ENABLE = no # MIDI controls
|
||||
AUDIO_ENABLE = no # Audio output on port C6
|
||||
UNICODE_ENABLE = no # Unicode
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue