diff options
| -rw-r--r-- | keyboards/kc60/keymaps/wigguno/Makefile | 24 | ||||
| -rw-r--r-- | keyboards/kc60/keymaps/wigguno/keymap.c | 62 | ||||
| -rw-r--r-- | keyboards/kc60/keymaps/wigguno/readme.md | 14 |
3 files changed, 100 insertions, 0 deletions
diff --git a/keyboards/kc60/keymaps/wigguno/Makefile b/keyboards/kc60/keymaps/wigguno/Makefile new file mode 100644 index 000000000..0d7d918d8 --- /dev/null +++ b/keyboards/kc60/keymaps/wigguno/Makefile | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | |||
| 2 | |||
| 3 | # Build Options | ||
| 4 | # change yes to no to disable | ||
| 5 | # | ||
| 6 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000) | ||
| 7 | MOUSEKEY_ENABLE ?= no # Mouse keys(+4700) | ||
| 8 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | ||
| 9 | CONSOLE_ENABLE ?= no # Console for debug(+400) | ||
| 10 | COMMAND_ENABLE ?= no # Commands for debug and configuration | ||
| 11 | KEYBOARD_LOCK_ENABLE ?= yes # Allow locking of keyboard via magic key | ||
| 12 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 13 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | ||
| 14 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 15 | NKRO_ENABLE ?= yes # USB Nkey Rollover | ||
| 16 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | ||
| 17 | MIDI_ENABLE ?= no # MIDI controls | ||
| 18 | UNICODE_ENABLE ?= no # Unicode | ||
| 19 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 20 | AUDIO_ENABLE ?= no # Audio output on port C6 | ||
| 21 | |||
| 22 | ifndef QUANTUM_DIR | ||
| 23 | include ../../../../Makefile | ||
| 24 | endif | ||
diff --git a/keyboards/kc60/keymaps/wigguno/keymap.c b/keyboards/kc60/keymaps/wigguno/keymap.c new file mode 100644 index 000000000..50b1d0f98 --- /dev/null +++ b/keyboards/kc60/keymaps/wigguno/keymap.c | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | // This keymap was designed to close to the default kc60 layout, with some useful changes, such as adding media keys. | ||
| 2 | // It also moves the reset key off the base layer, as in the default kc60 layout for this firmware. | ||
| 3 | // I have swapped FN and RGUI as my rainbow keyset has them in the opposite order. | ||
| 4 | |||
| 5 | #include "kc60.h" | ||
| 6 | |||
| 7 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 8 | |||
| 9 | /* Basic QWERTY | ||
| 10 | * ,-----------------------------------------------------------. | ||
| 11 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | | ||
| 12 | * |-----------------------------------------------------------| | ||
| 13 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ | | ||
| 14 | * |-----------------------------------------------------------| | ||
| 15 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return | | ||
| 16 | * |-----------------------------------------------------------| | ||
| 17 | * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift | | ||
| 18 | * |-----------------------------------------------------------| | ||
| 19 | * |Ctrl|Gui |Alt | Space |Alt |FN |Gui |Ctrl | | ||
| 20 | * `-----------------------------------------------------------' | ||
| 21 | */ | ||
| 22 | [0] = KEYMAP( | ||
| 23 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, \ | ||
| 24 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, \ | ||
| 25 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NO, KC_ENT, \ | ||
| 26 | KC_LSFT, KC_NO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_NO, KC_RSFT, \ | ||
| 27 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RGUI, KC_RCTL \ | ||
| 28 | ), | ||
| 29 | |||
| 30 | /* | ||
| 31 | * ,-----------------------------------------------------------. | ||
| 32 | * | ` |F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| Del | | ||
| 33 | * |-----------------------------------------------------------| | ||
| 34 | * | | | Up| | | | | | | | PS| | | | | ||
| 35 | * |-----------------------------------------------------------| | ||
| 36 | * | |Lft|Dwn|Rgt| |BL-|BL+| | | | | | | | ||
| 37 | * |-----------------------------------------------------------| | ||
| 38 | * | |Prv| PP|Nxt| | | | |Hom|End| | | | ||
| 39 | * |-----------------------------------------------------------| | ||
| 40 | * | Rst| | | BL | | | | | | ||
| 41 | * `-----------------------------------------------------------' | ||
| 42 | * PS = Print Screen | ||
| 43 | * PP = Play/Pause | ||
| 44 | */ | ||
| 45 | [1] = KEYMAP( /* Function Layer */ | ||
| 46 | KC_GRV, 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_DELETE, \ | ||
| 47 | KC_TRNS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_TRNS, KC_TRNS, KC_TRNS, \ | ||
| 48 | KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, BL_DEC, BL_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, \ | ||
| 49 | KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_END, KC_TRNS, KC_TRNS, KC_TRNS, \ | ||
| 50 | RESET, KC_TRNS, KC_TRNS, BL_TOGG, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS \ | ||
| 51 | ), | ||
| 52 | }; | ||
| 53 | |||
| 54 | const uint16_t PROGMEM fn_actions[] = { | ||
| 55 | |||
| 56 | }; | ||
| 57 | |||
| 58 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 59 | { | ||
| 60 | // MACRODOWN only works in this function | ||
| 61 | return MACRO_NONE; | ||
| 62 | }; | ||
diff --git a/keyboards/kc60/keymaps/wigguno/readme.md b/keyboards/kc60/keymaps/wigguno/readme.md new file mode 100644 index 000000000..55a9f60c7 --- /dev/null +++ b/keyboards/kc60/keymaps/wigguno/readme.md | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | Wigguno's KC60 Layout | ||
| 2 | ====================== | ||
| 3 | |||
| 4 | ## Quantum MK Firmware | ||
| 5 | For the full Quantum feature list, see [the parent readme.md](/readme.md). | ||
| 6 | |||
| 7 | ## Changes from default QMK layout | ||
| 8 | The default QMK layout for KC60 does not have a function layer. It also has the bootloader-mode reset key bound. This keymap fixes both of these by adding a sensible function layer (including moving the reset key onto it, far away from the FN key). | ||
| 9 | |||
| 10 | ### Changes from the default KC60 layout | ||
| 11 | The default KC60 layout is good, but it was missing media keys. I've added previous, play/pause and next. I've also removed some of the keys from the function layer I didn't use. | ||
| 12 | |||
| 13 | ### Build | ||
| 14 | To enable NKRO you must be in the keymaps/wigguno directory when running make. | ||
