From 43889326fcaa6623e264e95aeeb279a8540938bb Mon Sep 17 00:00:00 2001 From: Sid Carter Date: Thu, 14 Nov 2019 21:30:29 -0500 Subject: Adding new pcb with default keymap and personal keymap (#7314) * adding new pcb with default keymap and personal keymap * Update keyboards/leeku/finger65/readme.md Co-Authored-By: fauxpark * Change to newer DEBOUNCE format Co-Authored-By: fauxpark * switch to pragma Co-Authored-By: fauxpark * remove unused define keyboards/leeku/finger65/config.h Co-Authored-By: fauxpark * some cleanup after debounce and other changes * Remove no_suspend_power_down from keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * move to newer format and remove unused stuff * ensure default has no leds for now * change default layout name * clean up the keymap a bit * want grave not tilde * a minor change and cleanup * more stuff removed cause I don't care for LEDs * remove some remaining stuff * add RGBLED stuff * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark * update USB information * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/keymaps/default/keymap.c Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/keymaps/default/keymap.c Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/keymaps/madhatter/keymap.c Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/keymaps/madhatter/keymap.c Co-Authored-By: fauxpark * cleanup and conform to existing standard * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * remove stuff that doesn't work * add a JSON for the QMK configurator * list the layouts only available * let's just make it the 65 ansi layout with split backspace, eh? * remove extra space * Update keyboards/leeku/finger65/readme.md Co-Authored-By: fauxpark * Update keyboards/leeku/finger65/readme.md Co-Authored-By: fauxpark * update readme * remove redundant title * Monica Bellucci ruined my life * I'm having a RELIGIOUS EXPERIENCE ... and I don't take any DRUGS * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark * add a URL to the username * fix readme and make it simpler with links this time * Update keyboards/leeku/finger65/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/leeku/finger65/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * incorporate suggested changes * update usb stuff for some stuff coming in the future * update layout for LAYOUT_ALL * USB power changes --- .../leeku/finger65/keymaps/madhatter/keymap.c | 54 ++++++++++++++++++++++ .../leeku/finger65/keymaps/madhatter/rules.mk | 1 + 2 files changed, 55 insertions(+) create mode 100644 keyboards/leeku/finger65/keymaps/madhatter/keymap.c create mode 100644 keyboards/leeku/finger65/keymaps/madhatter/rules.mk (limited to 'keyboards/leeku/finger65/keymaps/madhatter') diff --git a/keyboards/leeku/finger65/keymaps/madhatter/keymap.c b/keyboards/leeku/finger65/keymaps/madhatter/keymap.c new file mode 100644 index 000000000..f8d5a0f7b --- /dev/null +++ b/keyboards/leeku/finger65/keymaps/madhatter/keymap.c @@ -0,0 +1,54 @@ +#include QMK_KEYBOARD_H + +enum layers { + _QWERTY, + _FNMS, +}; + +#define FNMS MO(_FNMS) + +/* + * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ + * │ESC│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ( │ ) │ \ │ \ │HOM│ + * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┼───┼───┤ + * │ TAB │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │BKSPC│PGU│ + * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤ + * │ ` │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ ENTER │PGD│ + * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤ + * │ SHIFT │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │SHIFT │UP │END│ + * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴──┬┴───┴┬──┴──┬───┼───┼───┤ + * │CTRL │GUI│ ALT │ SPACE (6.25u) │ ALT │CTRL │LFT│DWN│RGT│ + * └─────┴───┴─────┴───────────────────────┴─────┴─────┴───┴───┴───┘ + */ + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [_QWERTY] = LAYOUT_65_ansi_split_bs( + KC_GESC, 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_BSLS, KC_BSLS, KC_HOME, + 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_BSPC, KC_PGUP, + KC_GRV, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, + KC_LCTL, KC_LGUI,KC_LALT, KC_SPC, FNMS, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT + ), + + [_FNMS] = LAYOUT_65_ansi_split_bs( + 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_DEL, KC_MPLY, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, KC_VOLU, + AG_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EEP_RST, KC_VOLD, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_BTN1, KC_MS_U,KC_MNXT, + _______, _______, _______, _______, _______, _______, KC_MS_L,KC_MS_D, KC_MS_R + ), +}; + +// uint32_t layer_state_set_user(uint32_t state) { +// switch(biton32(state)) { +// case _FNMS: +// led_off(); +// rgb_on(); +// break; +// default: +// led_off(); +// rgb_off(); +// break; +// } +// return state; +// } diff --git a/keyboards/leeku/finger65/keymaps/madhatter/rules.mk b/keyboards/leeku/finger65/keymaps/madhatter/rules.mk new file mode 100644 index 000000000..6c605daec --- /dev/null +++ b/keyboards/leeku/finger65/keymaps/madhatter/rules.mk @@ -0,0 +1 @@ +MOUSEKEY_ENABLE = yes -- cgit v1.2.3