qmk-dactyl-manuform-a/keyboards/leeku/finger65/keymaps/madhatter/keymap.c

55 lines
3.5 KiB
C
Raw Normal View History

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 <fauxpark@gmail.com> * Change to newer DEBOUNCE format Co-Authored-By: fauxpark <fauxpark@gmail.com> * switch to pragma Co-Authored-By: fauxpark <fauxpark@gmail.com> * remove unused define keyboards/leeku/finger65/config.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * some cleanup after debounce and other changes * Remove no_suspend_power_down from keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * 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 <fauxpark@gmail.com> * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * update USB information * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/default/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/default/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/madhatter/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/madhatter/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * cleanup and conform to existing standard * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * 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 <fauxpark@gmail.com> * Update keyboards/leeku/finger65/readme.md Co-Authored-By: fauxpark <fauxpark@gmail.com> * 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 <fauxpark@gmail.com> * 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
2019-11-15 03:30:29 +01:00
#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 [ ] BKSPCPGU
*
* ` 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 LFTDWNRGT
*
*/
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
),
};
// layer_state_t layer_state_set_user(layer_state_t state) {
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 <fauxpark@gmail.com> * Change to newer DEBOUNCE format Co-Authored-By: fauxpark <fauxpark@gmail.com> * switch to pragma Co-Authored-By: fauxpark <fauxpark@gmail.com> * remove unused define keyboards/leeku/finger65/config.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * some cleanup after debounce and other changes * Remove no_suspend_power_down from keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * 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 <fauxpark@gmail.com> * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * update USB information * Update keyboards/leeku/finger65/usbconfig.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/default/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/default/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/madhatter/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/leeku/finger65/keymaps/madhatter/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * cleanup and conform to existing standard * Update keyboards/leeku/finger65/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * 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 <fauxpark@gmail.com> * Update keyboards/leeku/finger65/readme.md Co-Authored-By: fauxpark <fauxpark@gmail.com> * 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 <fauxpark@gmail.com> * 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
2019-11-15 03:30:29 +01:00
// switch(biton32(state)) {
// case _FNMS:
// led_off();
// rgb_on();
// break;
// default:
// led_off();
// rgb_off();
// break;
// }
// return state;
// }