Added my keymap (#2529) * Added my keymap * maybe that wasn't quite right. * Reduced the tap time to register layer * changed the tapping term that fits my typing speed a little better * Added retro tapping and reduced tapping term duration
6 files changed, 208 insertions(+), 0 deletions(-) A keyboards/amj40/keymaps/myee/build.sh A keyboards/amj40/keymaps/myee/config.h A keyboards/amj40/keymaps/myee/keymap.c A keyboards/amj40/keymaps/myee/readme.md A keyboards/amj40/keymaps/myee/rules.mk A keyboards/amj40/keymaps/myee/updatemerge.sh
A keyboards/amj40/keymaps/myee/build.sh => keyboards/amj40/keymaps/myee/build.sh +42 -0
@@ 0,0 1,42 @@ #!/bin/bash # adjust for cpu # -j 16 gave best result on a hyperthreaded quad core core i7 LIMIT=10 THREADS="-j 16" KMAP=iso_split_rshift echo "We need sudo later" sudo ls 2>&1 /dev/null function wait_bootloader { echo "Waiting for Bootloader..." local STARTTIME=$(date +"%s") local REMIND=0 local EXEC=dfu-programmer local TARGET=atmega32u4 while true do sudo $EXEC $TARGET get > /dev/null 2>&1 [ $? -eq 0 ] && break ENDTIME=$(date +"%s") DURATION=$(($ENDTIME-$STARTTIME)) if [ $REMIND -eq 0 -a $DURATION -gt $LIMIT ] then echo "Did you forget to press the reset button?" REMIND=1 fi sleep 1 done } make clean make KEYMAP=${KMAP} ${THREADS} if [[ $? -eq 0 ]] then echo "please trigger flashing!" wait_bootloader sudo make KEYMAP=${KMAP} dfu ${THREADS} else echo "make failed" exit 77 fi
A keyboards/amj40/keymaps/myee/config.h => keyboards/amj40/keymaps/myee/config.h +10 -0
@@ 0,0 1,10 @@ #ifndef CONFIG_USER_H #define CONFIG_USER_H #include "../../config.h" #define TAPPING_TERM 25 #define RETRO_TAPPING #define PERMISSIVE_HOLD #endif \ No newline at end of file
A keyboards/amj40/keymaps/myee/keymap.c => keyboards/amj40/keymaps/myee/keymap.c +114 -0
@@ 0,0 1,114 @@ #include "amj40.h" // Keymap myee // Each layer gets a name for readability, which is then used in the keymap matrix below. // The underscores don't mean anything - you can have a layer called STUFF or any other name. // Layer names don't all need to be of the same length, obviously, and you can also skip them // entirely and just use numbers. #define _QWERTY 0 #define _LOWER 1 #define _RAISE 2 #define _ADJUST 3 enum custom_keycodes { QWERTY = SAFE_RANGE, LOWER, RAISE, ADJUST, }; // increase readability #define _______ KC_TRNS #define XXXXXXX KC_NO const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [_QWERTY] = KEYMAP( \ KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,\ F(2), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_ENT, \ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, \ KC_LCTL, KC_LGUI,KC_LALT, F(0), F(1), KC_RGUI,KC_RALT, KC_RCTL \ ), [_LOWER] = KEYMAP( \ KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_UP, KC_MINS, KC_EQL, KC_DEL, \ _______, _______, KC_ASTR, KC_LBRC, KC_RBRC, KC_QUOT, KC_DQUO, KC_LEFT, KC_DOWN, KC_RGHT, KC_BSLS, \ _______, _______, _______, KC_LPRN, KC_RPRN, KC_HOME, KC_PGUP, KC_PGDN, KC_END, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______ \ ), [_RAISE] = KEYMAP( \ KC_GRV, KC_LPRN, KC_RPRN, KC_DQUO, KC_QUOT, KC_SCLN, KC_COLON,KC_UNDS, KC_PLUS, _______, _______, KC_BSPC, \ _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, \ _______, _______, _______, KC_LCBR, KC_RCBR, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, BL_INC, BL_DEC \ ), [_ADJUST] = KEYMAP( \ _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ KC_SYSTEM_SLEEP, _______, _______, _______, _______, _______, _______, _______ \ ), }; enum function_id { LAUNCH, RGBLED_TOGGLE, }; const uint16_t PROGMEM fn_actions[] = { [0] = ACTION_LAYER_TAP_KEY(_LOWER, KC_SPC), [1] = ACTION_LAYER_TAP_KEY(_RAISE, KC_SPC), [2] = ACTION_LAYER_TAP_KEY(_ADJUST,KC_TAB), }; const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { // MACRODOWN only works in this function return MACRO_NONE; }; bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case LOWER: if (record->event.pressed) { layer_on(_LOWER); update_tri_layer(_LOWER, _RAISE, _ADJUST); } else { layer_off(_LOWER); update_tri_layer(_LOWER, _RAISE, _ADJUST); } return false; break; case RAISE: if (record->event.pressed) { layer_on(_RAISE); update_tri_layer(_LOWER, _RAISE, _ADJUST); } else { layer_off(_RAISE); update_tri_layer(_LOWER, _RAISE, _ADJUST); } return false; break; case ADJUST: if (record->event.pressed) { layer_on(_ADJUST); } else { layer_off(_ADJUST); } return false; break; } return true; }
A keyboards/amj40/keymaps/myee/readme.md => keyboards/amj40/keymaps/myee/readme.md +11 -0
@@ 0,0 1,11 @@ AMJ40 Default Layout ===================== ##Quantum MK Firmware For the full Quantum feature list, see the parent readme.md. # Features * Based on a combination of the original AMJ40 keymap from the TMK firmware as well as the Planck Ortholinear keyboard's "Lower," "Raise," and "Adjust" layers. * View the keymap.c file to understand they layout of the keymap. * Has keys to toggle both the switch LEDs and underglow LEDs.
A keyboards/amj40/keymaps/myee/rules.mk => keyboards/amj40/keymaps/myee/rules.mk +27 -0
@@ 0,0 1,27 @@ # 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 # Virtual DIP switch configuration(+1000) 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 = yes # 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. Do not enable this with audio at the same time. # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend #define ws2812_PORTREG PORTD #define ws2812_DDRREG DDRD ifndef QUANTUM_DIR include ../../../../Makefile endif
A keyboards/amj40/keymaps/myee/updatemerge.sh => keyboards/amj40/keymaps/myee/updatemerge.sh +4 -0