diff options
| -rw-r--r-- | layouts/community/60_ansi/stanrc85-ansi/config.h | 6 | ||||
| -rw-r--r-- | layouts/community/60_ansi/stanrc85-ansi/keymap.c | 70 | ||||
| -rw-r--r-- | layouts/community/60_ansi/stanrc85-ansi/readme.md | 14 | ||||
| -rw-r--r-- | layouts/community/60_ansi/stanrc85-ansi/rules.mk | 1 |
4 files changed, 91 insertions, 0 deletions
diff --git a/layouts/community/60_ansi/stanrc85-ansi/config.h b/layouts/community/60_ansi/stanrc85-ansi/config.h new file mode 100644 index 000000000..77f0b2e72 --- /dev/null +++ b/layouts/community/60_ansi/stanrc85-ansi/config.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #define TAPPING_TERM 200 | ||
| 4 | #define RETRO_TAPPING | ||
| 5 | |||
| 6 | //#define IGNORE_MOD_TAP_INTERRUPT | ||
diff --git a/layouts/community/60_ansi/stanrc85-ansi/keymap.c b/layouts/community/60_ansi/stanrc85-ansi/keymap.c new file mode 100644 index 000000000..e56078a97 --- /dev/null +++ b/layouts/community/60_ansi/stanrc85-ansi/keymap.c | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | /* Copyright 2018 Stanrc85 | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | #define MODS_CTRL_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT)) | ||
| 19 | #define DEFAULT 0 //Custom ANSI | ||
| 20 | #define LAYER1 1 //Default ANSI (enable with Fn2+D) | ||
| 21 | #define LAYER2 2 //F keys, arrows, custom shortcuts, volume control | ||
| 22 | #define LAYER3 3 //Backlight controls and RESET | ||
| 23 | |||
| 24 | #define KC_CAD LALT(LCTL(KC_DEL)) | ||
| 25 | #define KC_LOCK LGUI(KC_L) | ||
| 26 | |||
| 27 | //Tap Dance Declarations | ||
| 28 | enum { | ||
| 29 | TD_WIN = 0, | ||
| 30 | TD_ESC | ||
| 31 | }; | ||
| 32 | |||
| 33 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
| 34 | [TD_WIN] = ACTION_TAP_DANCE_DOUBLE(KC_CAD, KC_LOCK), | ||
| 35 | [TD_ESC] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_GRV) | ||
| 36 | }; | ||
| 37 | |||
| 38 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 39 | [0] = LAYOUT_60_ansi( | ||
| 40 | TD(TD_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, | ||
| 41 | 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, | ||
| 42 | LT(2, KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 44 | KC_LCTL, KC_LGUI, KC_LALT, LT(2, KC_SPC), KC_RALT, TD(TD_WIN), MO(3), KC_RCTL), | ||
| 45 | |||
| 46 | [1] = LAYOUT_60_ansi( | ||
| 47 | KC_GRV, 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, | ||
| 48 | 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, | ||
| 49 | 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_ENT, | ||
| 50 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 51 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC , KC_RALT, MO(2), MO(3), KC_RCTL), | ||
| 52 | |||
| 53 | [2] = LAYOUT_60_ansi( | ||
| 54 | KC_TILD, 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, | ||
| 55 | _______, _______, LCA(KC_QUOT), KC_VOLU, LCA(KC_SCLN), _______, _______, KC_HOME, KC_UP, KC_END, _______, _______, _______, RESET, | ||
| 56 | KC_CAPS, _______, KC_MUTE, KC_VOLD, KC_MPLY, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, | ||
| 57 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 58 | _______, _______, _______, _______, _______, _______, _______, _______), | ||
| 59 | |||
| 60 | [3] = LAYOUT_60_ansi( | ||
| 61 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 62 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
| 63 | KC_CAPS, _______, _______, TG(1), _______, _______, BL_STEP, BL_DEC, BL_INC, BL_TOGG, _______, _______, _______, | ||
| 64 | _______, _______, _______, RGB_VAD, RGB_VAI, RGB_SAI, RGB_HUD, RGB_HUI, RGB_MOD, RGB_TOG, _______, _______, | ||
| 65 | _______, _______, _______, _______, _______, _______, _______, _______) | ||
| 66 | }; | ||
| 67 | |||
| 68 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 69 | return true; | ||
| 70 | } | ||
diff --git a/layouts/community/60_ansi/stanrc85-ansi/readme.md b/layouts/community/60_ansi/stanrc85-ansi/readme.md new file mode 100644 index 000000000..620d0775a --- /dev/null +++ b/layouts/community/60_ansi/stanrc85-ansi/readme.md | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | # Stanrc85's Standard ANSI 60% Layout | ||
| 2 | |||
| 3 | Shared keymap between two 60% PCB: | ||
| 4 | - 1upkeyboards60HSE | ||
| 5 | - DZ60 (hotswap) | ||
| 6 | |||
| 7 | ## Keymap Notes | ||
| 8 | - Layer 0 is custom ANSI layout with SpaceFN, EscFN on CAPS, Tap Dance on Fn1 key for CTRL+ALT+DEL and WIN+L | ||
| 9 | - Layer 1 is default ANSI (enable with Fn2+D) | ||
| 10 | - Layer 2 is F keys, arrows, volume controls and custom shortcuts for AHK | ||
| 11 | - Layer 3 is backlight control and RESET | ||
| 12 | |||
| 13 | ### Build | ||
| 14 | To build the firmware file associated with this keymap, simply run `make your_keyboard:stanrc85-ansi`. | ||
diff --git a/layouts/community/60_ansi/stanrc85-ansi/rules.mk b/layouts/community/60_ansi/stanrc85-ansi/rules.mk new file mode 100644 index 000000000..e5ddcae8d --- /dev/null +++ b/layouts/community/60_ansi/stanrc85-ansi/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| TAP_DANCE_ENABLE = yes | |||
