diff options
author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2019-02-24 18:14:55 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-24 15:14:55 -0800 |
commit | c8de0f78bfa729e610566d41a31aa1615369a597 (patch) | |
tree | 0d71cb0b26b6f27f4f97fdc2134086d4fc6ef485 | |
parent | 6f30a6b4079684742c147741b98414b1b2350b0b (diff) | |
download | qmk_firmware-c8de0f78bfa729e610566d41a31aa1615369a597.tar.gz qmk_firmware-c8de0f78bfa729e610566d41a31aa1615369a597.zip |
[Keymap] Initial upload of stanrc85 HS60 v2 layout and config (#5217)
-rw-r--r-- | keyboards/hs60/v2/keymaps/stanrc85/config.h | 25 | ||||
-rw-r--r-- | keyboards/hs60/v2/keymaps/stanrc85/keymap.c | 76 | ||||
-rw-r--r-- | keyboards/hs60/v2/keymaps/stanrc85/readme.md | 6 | ||||
-rw-r--r-- | keyboards/hs60/v2/keymaps/stanrc85/rules.mk | 1 |
4 files changed, 108 insertions, 0 deletions
diff --git a/keyboards/hs60/v2/keymaps/stanrc85/config.h b/keyboards/hs60/v2/keymaps/stanrc85/config.h new file mode 100644 index 000000000..4be7965e3 --- /dev/null +++ b/keyboards/hs60/v2/keymaps/stanrc85/config.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | Copyright 2019 Stanrc85 | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | #pragma once | ||
18 | |||
19 | /* Include overwrites for specific keymap */ | ||
20 | |||
21 | #define HS60_ANSI | ||
22 | #undef PRODUCT_ID | ||
23 | #define PRODUCT_ID 0x4854 | ||
24 | #define TAPPING_TERM 200 | ||
25 | #define RETRO_TAPPING | ||
diff --git a/keyboards/hs60/v2/keymaps/stanrc85/keymap.c b/keyboards/hs60/v2/keymaps/stanrc85/keymap.c new file mode 100644 index 000000000..d8d79a581 --- /dev/null +++ b/keyboards/hs60/v2/keymaps/stanrc85/keymap.c | |||
@@ -0,0 +1,76 @@ | |||
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 DEFAULT 0 //Custom ANSI | ||
19 | #define LAYER1 1 //Default ANSI (enable with Fn2+D) | ||
20 | #define LAYER2 2 //Function keys, arrows, custom shortcuts, volume control | ||
21 | #define LAYER3 3 //RGB Underglow controls and RESET | ||
22 | |||
23 | //Aliases for longer keycodes | ||
24 | #define KC_CAD LALT(LCTL(KC_DEL)) | ||
25 | #define KC_LOCK LGUI(KC_L) | ||
26 | #define CA_QUOT LCA(KC_QUOT) | ||
27 | #define CA_SCLN LCA(KC_SCLN) | ||
28 | #define KC_CTLE LCTL_T(KC_ESC) | ||
29 | #define LT_SPCF LT(2, KC_SPC) | ||
30 | #define TD_TESC TD(TD_ESC) | ||
31 | #define TD_TWIN TD(TD_WIN) | ||
32 | |||
33 | //Tap Dance Declarations | ||
34 | enum { | ||
35 | TD_WIN = 0, | ||
36 | TD_ESC | ||
37 | }; | ||
38 | |||
39 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
40 | [TD_WIN] = ACTION_TAP_DANCE_DOUBLE(KC_CAD, KC_LOCK), | ||
41 | [TD_ESC] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_GRV) | ||
42 | }; | ||
43 | |||
44 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
45 | [0] = LAYOUT_60_ansi( | ||
46 | TD_TESC, 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, | ||
47 | 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, | ||
48 | KC_CTLE, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
49 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
50 | KC_LCTL, KC_LGUI, KC_LALT, LT_SPCF, KC_RALT, TD_TWIN, MO(3), KC_RCTL), | ||
51 | |||
52 | [1] = LAYOUT_60_ansi( | ||
53 | 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, | ||
54 | 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, | ||
55 | 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, | ||
56 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
57 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC , KC_RALT, MO(2), MO(3), KC_RCTL), | ||
58 | |||
59 | [2] = LAYOUT_60_ansi( | ||
60 | 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, | ||
61 | _______, _______, CA_QUOT, KC_VOLU, CA_SCLN, _______, _______, KC_HOME, KC_UP, KC_END, _______, _______, _______, RESET, | ||
62 | KC_CAPS, _______, KC_MUTE, KC_VOLD, KC_MPLY, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, | ||
63 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | _______, _______, _______, _______, _______, _______, _______, _______), | ||
65 | |||
66 | [3] = LAYOUT_60_ansi( | ||
67 | _______, RGB_TOG, RGB_MOD, RGB_VAD, RGB_VAI, RGB_SAI, RGB_HUD, RGB_HUI, _______, _______, _______, _______, _______, _______, | ||
68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
69 | _______, _______, _______, TG(1), _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
70 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
71 | _______, _______, _______, _______, _______, _______, _______, _______) | ||
72 | }; | ||
73 | |||
74 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
75 | return true; | ||
76 | } | ||
diff --git a/keyboards/hs60/v2/keymaps/stanrc85/readme.md b/keyboards/hs60/v2/keymaps/stanrc85/readme.md new file mode 100644 index 000000000..650871a5e --- /dev/null +++ b/keyboards/hs60/v2/keymaps/stanrc85/readme.md | |||
@@ -0,0 +1,6 @@ | |||
1 | The default keymap for ANSI HS60 V2 | ||
2 | =================================== | ||
3 | |||
4 |  | ||
5 | |||
6 | Default layer is normal ANSI and Fn layer is used for RGB functions, Volume control and arrow cluster \ No newline at end of file | ||
diff --git a/keyboards/hs60/v2/keymaps/stanrc85/rules.mk b/keyboards/hs60/v2/keymaps/stanrc85/rules.mk new file mode 100644 index 000000000..e5ddcae8d --- /dev/null +++ b/keyboards/hs60/v2/keymaps/stanrc85/rules.mk | |||
@@ -0,0 +1 @@ | |||
TAP_DANCE_ENABLE = yes | |||