diff options
-rw-r--r-- | keyboards/40percentclub/mf68/keymaps/emdarcher/config.h | 3 | ||||
-rw-r--r-- | keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c | 55 | ||||
-rw-r--r-- | keyboards/40percentclub/mf68/keymaps/emdarcher/readme.md | 13 | ||||
-rw-r--r-- | keyboards/40percentclub/mf68/keymaps/emdarcher/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/tada68/keymaps/emdarcher/config.h | 5 | ||||
-rwxr-xr-x | keyboards/tada68/keymaps/emdarcher/keymap.c | 68 | ||||
-rwxr-xr-x | keyboards/tada68/keymaps/emdarcher/readme.md | 15 | ||||
-rw-r--r-- | keyboards/tada68/keymaps/emdarcher/rules.mk | 7 |
8 files changed, 169 insertions, 0 deletions
diff --git a/keyboards/40percentclub/mf68/keymaps/emdarcher/config.h b/keyboards/40percentclub/mf68/keymaps/emdarcher/config.h new file mode 100644 index 000000000..e1a6eb1a2 --- /dev/null +++ b/keyboards/40percentclub/mf68/keymaps/emdarcher/config.h | |||
@@ -0,0 +1,3 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #define GRAVE_ESC_ALT_OVERRIDE | ||
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 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | |||
3 | #define _QWERTY 0 | ||
4 | #define _FN1 1 | ||
5 | #define _FN2 2 | ||
6 | #define X0 LT(_FN2, KC_CAPS) | ||
7 | #define X1 MO(_FN1) | ||
8 | |||
9 | |||
10 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
11 | /* Default layer */ | ||
12 | [_QWERTY] = LAYOUT_68_ansi( | ||
13 | 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, | ||
14 | 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, | ||
15 | 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, | ||
16 | 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 , | ||
17 | KC_LCTL ,KC_LALT ,KC_LGUI , KC_SPACE , X1 ,KC_RALT ,KC_RCTL , KC_LEFT,KC_DOWN,KC_RGHT | ||
18 | ), | ||
19 | /* FN Layer */ | ||
20 | [_FN1] = LAYOUT_68_ansi( | ||
21 | 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, | ||
22 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_PSCR,KC_SLCK,KC_PAUS,_______, _______,KC_END, | ||
23 | X0 ,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_MRWD,KC_MFFD, _______, | ||
24 | _______ ,_______,KC_MPLY,KC_MSTP,KC_MPRV,KC_MNXT,KC_VOLD,KC_VOLU,KC_MUTE,_______,_______, _______, _______, | ||
25 | _______ ,_______ ,_______ , _______, _______,_______,_______, _______,_______,_______ | ||
26 | ), | ||
27 | |||
28 | /* CAPS LOCK layer */ | ||
29 | [_FN2] = LAYOUT_68_ansi( | ||
30 | 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, | ||
31 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, KC_VOLD,KC_END, | ||
32 | _______,_______,_______,_______,_______,_______,KC_LEFT,KC_DOWN, KC_UP ,KC_RGHT,_______,_______, _______, | ||
33 | _______ ,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, KC_MUTE, | ||
34 | _______ ,_______ ,_______ , _______, _______,_______,_______, KC_MPRV,KC_MPLY,KC_MNXT | ||
35 | ) | ||
36 | }; | ||
37 | |||
38 | |||
39 | |||
40 | void led_set_user(uint8_t usb_led){ | ||
41 | //turn on the Pro Micro's on board LEDs for CAPS LOCK | ||
42 | if(IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)){ | ||
43 | //set led pins to low | ||
44 | setPinOutput(B0); | ||
45 | writePinLow(B0); | ||
46 | setPinOutput(B5); | ||
47 | writePinLow(B5); | ||
48 | } else { | ||
49 | //set to Hi-Z | ||
50 | setPinInput(B0); | ||
51 | writePinLow(B0); | ||
52 | setPinInput(B5); | ||
53 | writePinLow(B5); | ||
54 | } | ||
55 | } | ||
diff --git a/keyboards/40percentclub/mf68/keymaps/emdarcher/readme.md b/keyboards/40percentclub/mf68/keymaps/emdarcher/readme.md new file mode 100644 index 000000000..75d6d0317 --- /dev/null +++ b/keyboards/40percentclub/mf68/keymaps/emdarcher/readme.md | |||
@@ -0,0 +1,13 @@ | |||
1 | # emdarcher's MF68 Layout | ||
2 | |||
3 | A layout mostly based off the factory layout, but with some modifications. Designed for use in a MAC or Unix environment, and has some VIM inspiration. | ||
4 | |||
5 | - Utilizes the Pro Micro's on board LED's to show the CAPS LOCK status. | ||
6 | - Added Caps Lock for an extra FN layer with VIM like control on hjlk keys. | ||
7 | - Made the ESC key use GESC for functionality for Grave and Tilde with shift or GUI modifiers. | ||
8 | - Added Print Screen, Scroll Lock, and Pause keys on P,[,] keys to add Mac screen brightness control. | ||
9 | * On Mac, Scroll Lock is Brightness Down and Pause is Brightness Up, so with this FN+[ = brighness down, FN+] = brightness up | ||
10 | - Has Mac Fast-forward and Rewind keys mapped for changing media tracks. FN+; = Rewind, FN+' = Fast-forward | ||
11 | - Moved LGUI to the default MAC Command key position. | ||
12 | |||
13 | Note: By default, this keymap doesn't utilize the backlighting. | ||
diff --git a/keyboards/40percentclub/mf68/keymaps/emdarcher/rules.mk b/keyboards/40percentclub/mf68/keymaps/emdarcher/rules.mk new file mode 100644 index 000000000..79cbc11ef --- /dev/null +++ b/keyboards/40percentclub/mf68/keymaps/emdarcher/rules.mk | |||
@@ -0,0 +1,3 @@ | |||
1 | |||
2 | BACKLIGHT_ENABLE = no | ||
3 | |||
diff --git a/keyboards/tada68/keymaps/emdarcher/config.h b/keyboards/tada68/keymaps/emdarcher/config.h new file mode 100644 index 000000000..b193cf18d --- /dev/null +++ b/keyboards/tada68/keymaps/emdarcher/config.h | |||
@@ -0,0 +1,5 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #define BACKLIGHT_BREATHING | ||
4 | #define GRAVE_ESC_ALT_OVERRIDE | ||
5 | |||
diff --git a/keyboards/tada68/keymaps/emdarcher/keymap.c b/keyboards/tada68/keymaps/emdarcher/keymap.c new file mode 100755 index 000000000..642b4d8fa --- /dev/null +++ b/keyboards/tada68/keymaps/emdarcher/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | |||
3 | #define _BL 0 | ||
4 | #define _FL 1 | ||
5 | #define _CL 2 | ||
6 | #define _ML 3 | ||
7 | |||
8 | #define KC_X0 LT(_CL, KC_CAPS) | ||
9 | |||
10 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
11 | /* Keymap _BL: (Base Layer) Default Layer | ||
12 | * ,----------------------------------------------------------------. | ||
13 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |~ ` | | ||
14 | * |----------------------------------------------------------------| | ||
15 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |Del | | ||
16 | * |----------------------------------------------------------------| | ||
17 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return |PgUp| | ||
18 | * |----------------------------------------------------------------| | ||
19 | * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift | Up|PgDn| | ||
20 | * |----------------------------------------------------------------| | ||
21 | * |Ctrl|Alt |Win | Space |Alt| FN|Ctrl|Lef|Dow|Rig | | ||
22 | * `----------------------------------------------------------------' | ||
23 | */ | ||
24 | [_BL] = LAYOUT_ansi( | ||
25 | 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_GRV, | ||
26 | 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, | ||
27 | KC_X0, 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_PGUP, | ||
28 | 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_PGDN, | ||
29 | KC_LCTL, KC_LALT,KC_LGUI, KC_SPC, KC_RALT,MO(_FL),KC_RCTRL, KC_LEFT,KC_DOWN,KC_RGHT), | ||
30 | |||
31 | /* Keymap _FL: Function Layer for FN key | ||
32 | */ | ||
33 | [_FL] = LAYOUT_ansi( | ||
34 | 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_INS , | ||
35 | _______,_______,_______,_______,_______, _______,_______,_______,_______,_______,KC_PSCR,KC_SLCK,KC_PAUS, _______,KC_HOME, | ||
36 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_MRWD,KC_MFFD, _______, KC_END, | ||
37 | _______, _______,BL_BRTG,BL_DEC, BL_TOGG,BL_INC, KC_MPLY,KC_VOLD,KC_VOLU,KC_MUTE,_______,_______, _______, _______, | ||
38 | _______,_______,_______, _______, _______,_______,_______,_______,_______, _______), | ||
39 | |||
40 | /* Keymap _CL: Function Layer for Caps Lock key | ||
41 | * uses VIM like control with hjkl for arrow keys | ||
42 | */ | ||
43 | |||
44 | [_CL] = LAYOUT_ansi( | ||
45 | 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_INS , | ||
46 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_PSCR,KC_SLCK,KC_PAUS, _______,KC_HOME, | ||
47 | _______,_______,_______,_______,_______,_______,KC_LEFT,KC_DOWN,KC_UP,KC_RIGHT,_______,_______, _______, KC_END, | ||
48 | _______, _______,_______,_______,_______,_______,KC_MPLY,KC_VOLD,KC_VOLU,KC_MUTE,_______,_______, _______, _______, | ||
49 | _______,_______,_______, _______, _______,_______,_______,_______,_______, _______), | ||
50 | |||
51 | /* Keymap _ML: The Mouse control layer, activated by using both _FL and _CL layers | ||
52 | * Activates mouse control. Keeps lower layer's control | ||
53 | */ | ||
54 | [_ML] = LAYOUT_ansi( | ||
55 | KC_ESC ,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______, | ||
56 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_WH_R, KC_WH_L,KC_WH_U, | ||
57 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, KC_WH_D, | ||
58 | _______, _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,KC_BTN1, KC_MS_U, KC_BTN2, | ||
59 | _______,_______,_______, _______, _______,_______,_______,KC_MS_L,KC_MS_D, KC_MS_R), | ||
60 | |||
61 | }; | ||
62 | |||
63 | |||
64 | //layer state control | ||
65 | uint32_t layer_state_set_user(uint32_t state){ | ||
66 | //switch to _ML if both _FL and _CL are activated | ||
67 | return update_tri_layer_state(state, _FL, _CL, _ML); | ||
68 | } | ||
diff --git a/keyboards/tada68/keymaps/emdarcher/readme.md b/keyboards/tada68/keymaps/emdarcher/readme.md new file mode 100755 index 000000000..04b5a77e1 --- /dev/null +++ b/keyboards/tada68/keymaps/emdarcher/readme.md | |||
@@ -0,0 +1,15 @@ | |||
1 | # emdarcher's TADA68 layout | ||
2 | |||
3 | A layout that adds a few extra features on the function layers. Designed for use in a MAC or Unix environment, and has some VIM inspiration. | ||
4 | |||
5 | - Added Caps Lock for an extra FN layer with VIM like control on hjlk keys. | ||
6 | - Added Breathing Backlight Toggle. | ||
7 | - Made the ESC key use GESC for functionality for Grave and Tilde with shift or GUI modifiers. | ||
8 | - Added Print Screen, Scroll Lock, and Pause keys on P,[,] keys to add Mac screen brightness control. | ||
9 | * On Mac, Scroll Lock is Brightness Down and Pause is Brightness Up, so with this FN+[ = brighness down, FN+] = brightness up | ||
10 | - Has Mac Fast-forward and Rewind keys mapped for changing media tracks. FN+; = Rewind, FN+' = Fast-forward | ||
11 | - Moved LGUI to the default MAC Command key position. | ||
12 | - Has a mouse control layer that is activated by pressing both FN and CAPS LOCK | ||
13 | - FN+X toggles the backlight breathing mode | ||
14 | |||
15 | |||
diff --git a/keyboards/tada68/keymaps/emdarcher/rules.mk b/keyboards/tada68/keymaps/emdarcher/rules.mk new file mode 100644 index 000000000..d44788422 --- /dev/null +++ b/keyboards/tada68/keymaps/emdarcher/rules.mk | |||
@@ -0,0 +1,7 @@ | |||
1 | # Build Options | ||
2 | # change to "no" to disable the options, or define them in the Makefile in | ||
3 | # the appropriate keymap folder that will get included automatically | ||
4 | # | ||
5 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
6 | CONSOLE_ENABLE = no # Console for debug(+400) | ||
7 | |||