aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c
diff options
context:
space:
mode:
authorEthan Durrant <5387347+emdarcher@users.noreply.github.com>2019-09-12 16:47:31 -0600
committerDrashna Jaelre <drashna@live.com>2019-09-12 15:47:30 -0700
commitb4161ac190da5ea3d1d42197b903f788d7869717 (patch)
treef23a7cb373419e387d6b9f586e75b0debcc0ea6a /keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c
parentb9de27161a56eedba41fe55df63d556c5fc6f860 (diff)
downloadfirmware-b4161ac190da5ea3d1d42197b903f788d7869717.tar.gz
firmware-b4161ac190da5ea3d1d42197b903f788d7869717.tar.bz2
firmware-b4161ac190da5ea3d1d42197b903f788d7869717.zip
[Keymap] adding emdarcher's keymap for mf68 and tada68 (#6718)
* adding a custom mf68 keymap * added custom tada68 keymap * readme edit on tada68 map * added mac fast-forward and rewind keybindings to tada68 emdarcher keymap * tada68 keymap documentation and edits * cleanup and edits * typo fix in emdarcher's tada68 keymap * cleaning up emdarcher keymap for tada68 * cleaned up emdarcher keymap for mf68
Diffstat (limited to 'keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c')
-rw-r--r--keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c b/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c
new file mode 100644
index 000000000..7015348e1
--- /dev/null
+++ b/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c
@@ -0,0 +1,55 @@
+#include QMK_KEYBOARD_H
+
+#define _QWERTY 0
+#define _FN1 1
+#define _FN2 2
+#define X0 LT(_FN2, KC_CAPS)
+#define X1 MO(_FN1)
+
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* Default layer */
+ [_QWERTY] = LAYOUT_68_ansi(
+ 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_BSPC, KC_INS ,KC_PGUP,
+ 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, KC_DEL ,KC_PGDN,
+ X0 , KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L ,KC_SCLN,KC_QUOT, KC_ENTER,
+ 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_LCTL ,KC_LALT ,KC_LGUI , KC_SPACE , X1 ,KC_RALT ,KC_RCTL , KC_LEFT,KC_DOWN,KC_RGHT
+ ),
+ /* FN Layer */
+ [_FN1] = LAYOUT_68_ansi(
+ 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_BSPC, _______,KC_HOME,
+ _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_PSCR,KC_SLCK,KC_PAUS,_______, _______,KC_END,
+ X0 ,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_MRWD,KC_MFFD, _______,
+ _______ ,_______,KC_MPLY,KC_MSTP,KC_MPRV,KC_MNXT,KC_VOLD,KC_VOLU,KC_MUTE,_______,_______, _______, _______,
+ _______ ,_______ ,_______ , _______, _______,_______,_______, _______,_______,_______
+ ),
+
+ /* CAPS LOCK layer */
+ [_FN2] = LAYOUT_68_ansi(
+ 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_BSPC, KC_VOLU,KC_HOME,
+ _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, KC_VOLD,KC_END,
+ _______,_______,_______,_______,_______,_______,KC_LEFT,KC_DOWN, KC_UP ,KC_RGHT,_______,_______, _______,
+ _______ ,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, KC_MUTE,
+ _______ ,_______ ,_______ , _______, _______,_______,_______, KC_MPRV,KC_MPLY,KC_MNXT
+ )
+};
+
+
+
+void led_set_user(uint8_t usb_led){
+ //turn on the Pro Micro's on board LEDs for CAPS LOCK
+ if(IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)){
+ //set led pins to low
+ setPinOutput(B0);
+ writePinLow(B0);
+ setPinOutput(B5);
+ writePinLow(B5);
+ } else {
+ //set to Hi-Z
+ setPinInput(B0);
+ writePinLow(B0);
+ setPinInput(B5);
+ writePinLow(B5);
+ }
+}