summaryrefslogtreecommitdiff
path: root/keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default
diff options
context:
space:
mode:
authorShem Sedrick <ssedrick@users.noreply.github.com>2022-08-13 14:38:31 -0500
committerGitHub <noreply@github.com>2022-08-13 20:38:31 +0100
commit95782691d43fbca7bc65109e20cdb9a64b265387 (patch)
tree513e57cb14a62c489cfd0452681b13f73999bf8e /keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default
parentaee738c61b52cce2ce03c78587450b17e982a522 (diff)
Dactyl Manuform 4x5 with 5 thumb cluster (#17671)
* Working on new dactyl * Preliminary build and keymap in place for 4x5_5 dactyl manuform * Removing first attempt to use 4x5 * Updating to match c style guide * Fixing issues after merge, deletion of dactyl_manuform.h * Spliting out custom keymap * Adding license headers * Fixing EE_HANDS detection on Pro-Micro The pro-micro was not working when I plugged into the elite-c on the right hand side of my keyboard. Adding the SPLIT_USB_DIRECT definition fixed the issue. * Apply suggestions from code review Adding Drashna's delete comments Co-authored-by: Drashna Jaelre <drashna@live.com> * Removed config.h for keymaps and tweaked keymap Per Drashna's pr review, I have removed the config.h files for the keymaps. Also tweaked my keymap to switch backspace and enter. Added tapping toggle for RAISE. * Further tweaking ssedrick keymap for dactyl_manuform 4x5_5 As with most new keyboards, they take some getting used to. I've rearranged my thumb cluster to hopfully a more long term solution. * Adding missing KC_BSLS to ssedrick keymap for 4x5_5 Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default')
-rw-r--r--keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default/keymap.c155
1 files changed, 155 insertions, 0 deletions
diff --git a/keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default/keymap.c b/keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default/keymap.c
new file mode 100644
index 0000000000..fad361fffd
--- /dev/null
+++ b/keyboards/handwired/dactyl_manuform/4x5_5/keymaps/default/keymap.c
@@ -0,0 +1,155 @@
+// Copyright 2022 Shem Sedrick (@ssedrick)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include QMK_KEYBOARD_H
+#include "print.h"
+
+enum key_layers {
+ _BASE,
+ _COLEMAK,
+ _RAISE,
+ _LOWER
+};
+
+enum layer_keycodes {
+ QWERTY = SAFE_RANGE,
+ COLEMAK,
+};
+
+#define RAISE MO(_RAISE)
+#define LOWER MO(_LOWER)
+#define SH_ESC SFT_T(KC_ESC)
+#define ____ KC_TRANSPARENT
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* Base (qwerty)
+ * ,----------------------------------, ,----------------------------------,
+ * | q | w | e | r | t | | y | u | i | o | p |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | a | s | d | f | g | | h | j | k | l | ; |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | z | x | c | v | b | | n | m | , | . | / |
+ * '------+------+------+-------------' '------+------+------+------+------'
+ * | [ | ] | | ' | `~ |
+ * '-------------+------, ,------|-------------'
+ * | ESC | | BSPC |
+ * |-------------, ,------+------|
+ * | GUI | TAB | | SHIFT| SPACE|
+ * |------+------| |------+------|
+ * | RAISE| CTRL | | LOWER| ENTER|
+ * '-------------' '-------------'
+ */
+ [_BASE] = LAYOUT(
+ KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
+ KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
+ KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
+ KC_LBRC, KC_RBRC, KC_QUOT, KC_GRV,
+ SH_ESC, KC_BSPC,
+ KC_LGUI, KC_TAB, KC_RSFT, KC_SPC,
+ RAISE, KC_LCTRL, LOWER, KC_ENT
+ ),
+
+ /* Colemak
+ * ,----------------------------------, ,----------------------------------,
+ * | q | w | f | p | g | | j | l | u | y | ; |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | a | r | s | t | d | | h | n | e | i | o |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | z | x | c | v | b | | k | m | , | . | / |
+ * '------+------+------+-------------' '------+------+------+------+------'
+ * | [ | ] | | ' | `~ |
+ * '-------------+------, ,------|-------------'
+ * | ESC | | BSPC |
+ * |-------------, ,------+------|
+ * | GUI | TAB | | SHIFT| SPACE|
+ * |------+------| |------+------|
+ * | RAISE| CTRL | | LOWER| ENTER|
+ * '-------------' '-------------'
+ */
+ [_COLEMAK] = LAYOUT(
+ KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN,
+ KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O,
+ KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH,
+ KC_LBRC, KC_RBRC, KC_QUOT, KC_GRV,
+ KC_ESC, KC_BSPC,
+ KC_LGUI, KC_TAB, KC_RSFT, KC_SPC,
+ RAISE, KC_LCTRL, LOWER, KC_ENT
+ ),
+ /* RAISE
+ * ,----------------------------------, ,----------------------------------,
+ * | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | ( | ) | { | } | = | | - | 4 | 5 | 6 | ; |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | RESET| BOOT | [ | ] | | | | 1 | 2 | 3 | |
+ * |------+------+------+-------------| |------+------+------+------+------,
+ * | | | | 0 | . |
+ * '-------------+------, ,------|-------------'
+ * | ESC | | BSPC |
+ * |-------------, ,------+------|
+ * | GUI | TAB | | SHIFT| SPACE|
+ * |------+------| |------+------|
+ * | RAISE| CTRL | | LOWER| ENTER|
+ * '-------------' '-------------'
+ */
+ [_RAISE] = LAYOUT(
+ KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
+ S(KC_9), S(KC_0), KC_LCBR, KC_RCBR, KC_EQL, KC_MINS, KC_4, KC_5, KC_6, KC_QUOT,
+ QK_RBT, QK_BOOT, KC_LBRC, KC_RBRC, ____, ____, KC_1, KC_2, KC_3, ____,
+ ____, ____, KC_0, KC_DOT,
+ ____, ____,
+ ____, ____, ____, ____,
+ ____, ____, ____, ____
+ ),
+
+ /* LOWER
+ * ,----------------------------------, ,----------------------------------,
+ * | ! | @ | # | $ | % | | ^ | & | * | ( | ) |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | ( | ) | { | } | = | | | - | + | | | |
+ * |------+------+------+------+------| |------+------+------+------+------|
+ * | | | | | | | | LEFT | DOWN | UP | RIGHT|
+ * |------+------+------+-------------| |------+------+------+------+------,
+ * | | | |QWERTY|COLEMA|
+ * '-------------+------, ,------|-------------'
+ * | ESC | | BSPC |
+ * |-------------, ,------+------|
+ * | GUI | TAB | | SHIFT| SPACE|
+ * |------+------| |------+------|
+ * | RAISE| CTRL | | LOWER| ENTER|
+ * '-------------' '-------------'
+ */
+ [_LOWER] = LAYOUT(
+ KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN,
+ S(KC_9), S(KC_0), KC_LBRC, KC_RBRC, KC_EQL, ____, KC_MINS, KC_EQL, KC_PIPE, ____,
+ ____, ____, ____, ____, ____, ____, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
+ ____, ____, QWERTY, COLEMAK,
+ ____, ____,
+ ____, ____, ____, ____,
+ ____, ____, ____, ____
+ )
+};
+
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+ // If console is enabled, it will print the matrix position and status of each key pressed
+#ifdef CONSOLE_ENABLE
+ uprintf("KL: kc: 0x%04X, col: %u, row: %u, pressed: %d, time: %u, interrupt: %d, count: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time, record->tap.interrupted, record->tap.count);
+#endif
+ switch (keycode) {
+ case QWERTY:
+ if (record->event.pressed) {
+ set_single_persistent_default_layer(_BASE);
+ }
+ return false;
+ break;
+ case COLEMAK:
+ if (record->event.pressed) {
+ set_single_persistent_default_layer(_COLEMAK);
+ }
+ return false;
+ break;
+ }
+ return true;
+}
+