summaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/mitch
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/mitch')
-rw-r--r--keyboards/planck/keymaps/mitch/config.h5
-rw-r--r--keyboards/planck/keymaps/mitch/keymap.c66
-rw-r--r--keyboards/planck/keymaps/mitch/readme.md22
-rw-r--r--keyboards/planck/keymaps/mitch/rules.mk0
4 files changed, 0 insertions, 93 deletions
diff --git a/keyboards/planck/keymaps/mitch/config.h b/keyboards/planck/keymaps/mitch/config.h
deleted file mode 100644
index bb7989d90d..0000000000
--- a/keyboards/planck/keymaps/mitch/config.h
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "../../config.h"
-
-// for the broken board
-#undef MATRIX_COL_PINS
-#define MATRIX_COL_PINS { F1, F0, B0, B2, F4, F5, F6, F7, D4, D6, B4, D7 }
diff --git a/keyboards/planck/keymaps/mitch/keymap.c b/keyboards/planck/keymaps/mitch/keymap.c
deleted file mode 100644
index 814a28deb8..0000000000
--- a/keyboards/planck/keymaps/mitch/keymap.c
+++ /dev/null
@@ -1,66 +0,0 @@
-#include QMK_KEYBOARD_H
-
-#define QWERTY 0
-#define LOWER 1
-#define RAISE 2
-
-// In MacOS, switch between windows within an application
-#define GUI_GRV LGUI(KC_GRV)
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-/* Qwerty
- * ,-----------------------------------------------------------------------------------.
- * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
- * |------+------+------+------+------+-------------+------+------+------+------+------|
- * | Ctl | A | S | D | F | G | H | J | K | L | ; | " |
- * |------+------+------+------+------+------|------+------+------+------+------+------|
- * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
- * |------+------+------+------+------+------+------+------+------+------+------+------|
- * | Esc | Del | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right |
- * `-----------------------------------------------------------------------------------'
- */
-[QWERTY] = LAYOUT_planck_grid(
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
- KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, MT(MOD_RSFT, KC_ENT) ,
- KC_ESC, KC_DEL, KC_LALT, KC_LGUI, MO(1), KC_SPC, KC_SPC, MO(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
-),
-
-/* Lower
- * ,-----------------------------------------------------------------------------------.
- * | GUIGR| | | | | | | & | * | ( | ) | Del |
- * |------+------+------+------+------+-------------+------+------+------+------+------|
- * | Caps | | Mute | Vol- | Vol+ | | Bksp | $ | % | ^ | | | | |
- * |------+------+------+------+------+------|------+------+------+------+------+------|
- * | | | | | | | | ! | @ | # | \ |Enter |
- * |------+------+------+------+------+------+------+------+------+------+------+------|
- * | | | | | | Enter | | | PgUp | PgUn | |
- * `-----------------------------------------------------------------------------------'
- */
-[LOWER] = LAYOUT_planck_grid(
- GUI_GRV, _______, _______, _______, _______, _______, _______, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
- KC_CAPS, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, KC_BSPC, KC_DLR, KC_PERC, KC_CIRC, KC_PIPE, KC_PIPE,
- _______, _______, _______, _______, _______, _______, _______, KC_EXLM, KC_AT, KC_HASH, KC_BSLS, KC_ENT,
- _______, _______, _______, _______, _______, KC_ENT, KC_ENT, _______, _______, KC_PGDN, KC_PGUP, _______
-),
-
-/* Raise
- * ,-----------------------------------------------------------------------------------.
- * | ` | ` | ~ | ( | ) | | | 7 | 8 | 9 | 0 | |
- * |------+------+------+------+------+-------------+------+------+------+------+------|
- * | | [ | ] | { | } | | | 4 | 5 | 6 | | \ |
- * |------+------+------+------+------+------|------+------+------+------+------+------|
- * | | - | _ | = | + | | | 1 | 2 | 3 | |Enter |
- * |------+------+------+------+------+------+------+------+------+------+------+------|
- * | | | | | | Enter | | | | | |
- * `-----------------------------------------------------------------------------------'
- */
-
-[RAISE] = LAYOUT_planck_grid(
- KC_GRV, KC_GRV, KC_TILD, KC_LPRN, KC_RPRN, _______, _______, KC_7, KC_8, KC_9, KC_0, _______,
- _______, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, _______, _______, KC_4, KC_5, KC_6, _______, KC_BSLS,
- _______, KC_MINS, KC_UNDS, KC_EQL, KC_PLUS, _______, _______, KC_1, KC_2, KC_3, _______, KC_ENT,
- _______, _______, _______, _______, _______, KC_ENT, KC_ENT, _______, _______, KC_PGDN, KC_PGUP, _______
-)
-};
diff --git a/keyboards/planck/keymaps/mitch/readme.md b/keyboards/planck/keymaps/mitch/readme.md
deleted file mode 100644
index 9ed1133ef9..0000000000
--- a/keyboards/planck/keymaps/mitch/readme.md
+++ /dev/null
@@ -1,22 +0,0 @@
-## Flashing Keyboard
-
-1. Install `dfu` tools:
-
- brew tap osx-cross/avr
- brew install avr-libc
- brew install dfu-programmer
-
-2. Move to this directory.
-3. Hit the reset button on the keyboard.
-4. run `make dfu`.
-
-## The Keymap
-
-This keymap is designed for a rev3 Planck Keyboard.
-
-The default layer is QWERTY. The raise layer has a ten key on the right
-and common programming punctuation on the left. The lower layer provides the
-rest of the symbols, mostly mapped with the ten key numbers.
-
-The normal right shift key uses the `MT` macro to trigger Enter on tap and right
-shift when held.
diff --git a/keyboards/planck/keymaps/mitch/rules.mk b/keyboards/planck/keymaps/mitch/rules.mk
deleted file mode 100644
index e69de29bb2..0000000000
--- a/keyboards/planck/keymaps/mitch/rules.mk
+++ /dev/null