aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorSendy YK <mr@sendyyk.com>2021-03-06 01:30:06 +0700
committerGitHub <noreply@github.com>2021-03-05 10:30:06 -0800
commit52d8cbf092574974d50adfb8fd3b3b9f88074b18 (patch)
tree04bcb70f4837b936eaec93ef07b95a1dd95ce8c1 /layouts
parent73b8f85816c3209f6213e358a0d3737c7a73d45f (diff)
downloadqmk_firmware-52d8cbf092574974d50adfb8fd3b3b9f88074b18.tar.gz
qmk_firmware-52d8cbf092574974d50adfb8fd3b3b9f88074b18.zip
[Keymap] Add 60_ansi_arrow_split_bs_7u_spc layout & keymap (#11329)
* Add 60_ansi_arrow_split_bs_7u_spc layout & keymap * Update readme.md * Minor updates * Update dz60.h * Update keymap.c * Update readme.md * Update keymap.c * Update readme.md * Update readme.md * Update keymap.c * Update layouts/default/60_ansi_arrow_split_bs_7u_spc/layout.json * Update keymap.c * Update readme.md
Diffstat (limited to 'layouts')
-rw-r--r--layouts/community/60_ansi_arrow/mrsendyyk/keymap.c88
-rw-r--r--layouts/community/60_ansi_arrow/mrsendyyk/readme.md70
-rw-r--r--layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/keymap.c141
-rw-r--r--layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/readme.md78
-rw-r--r--layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/rules.mk (renamed from layouts/community/60_ansi_arrow/mrsendyyk/rules.mk)0
-rw-r--r--layouts/default/60_ansi_arrow/default_60_ansi_arrow/keymap.c29
-rw-r--r--layouts/default/60_ansi_arrow/info.json126
-rw-r--r--layouts/default/60_ansi_arrow/readme.md26
-rw-r--r--layouts/default/60_ansi_arrow_split_bs_7u_spc/default_60_ansi_arrow_split_bs_7u_spc/keymap.c47
-rw-r--r--layouts/default/60_ansi_arrow_split_bs_7u_spc/info.json80
-rw-r--r--layouts/default/60_ansi_arrow_split_bs_7u_spc/layout.json5
-rw-r--r--layouts/default/60_ansi_arrow_split_bs_7u_spc/readme.md30
12 files changed, 477 insertions, 243 deletions
diff --git a/layouts/community/60_ansi_arrow/mrsendyyk/keymap.c b/layouts/community/60_ansi_arrow/mrsendyyk/keymap.c
deleted file mode 100644
index 09b3c2858..000000000
--- a/layouts/community/60_ansi_arrow/mrsendyyk/keymap.c
+++ /dev/null
@@ -1,88 +0,0 @@
1/*
2 * 60 ANSI Arrow Keymap with RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator
3 *
4 * Copyright (C) 2020 Sendy YK <https://mr.sendyyk.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#include QMK_KEYBOARD_H
21
22enum layer_names {
23 _BASE, // Default Layer
24 _FN // Fn Layer
25};
26
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 // Default Layer
29 [_BASE] = LAYOUT_60_ansi_arrow(
30 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,
31 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,
32 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,
33 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
34 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN), KC_LEFT, KC_DOWN, KC_RGHT
35 ),
36 // Fn Layer
37 [_FN] = LAYOUT_60_ansi_arrow(
38 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,
39 KC_BRIU, _______, _______, KC_END, RESET, _______, _______, _______, KC_INS, _______, KC_PSCR, _______, _______, KC_EJCT,
40 KC_BRID, _______, KC_SLCK, _______, _______, _______, KC_HOME, _______, _______, _______, _______, _______, KC_MUTE,
41 KC_VOLU, _______, _______, KC_CALC, _______, _______, KC_NLCK, KC_MAIL, _______, _______, KC_PAUS, KC_PGUP, _______,
42 KC_VOLD, KC_MRWD, KC_MFFD, KC_MPLY, KC_MSTP, _______, KC_MPRV, KC_PGDN, KC_MNXT
43 )
44};
45
46void keyboard_post_init_user(void) {
47 rgblight_enable_noeeprom();
48 rgblight_setrgb(100, 255, 100);
49}
50
51// RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator
52void update_led(void) {
53 // Num Lock Indicator
54 if (host_keyboard_led_state().num_lock) {
55 rgblight_setrgb(225, 8, 0);
56 }
57 // Scroll Lock Indicator
58 if (host_keyboard_led_state().scroll_lock) {
59 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 2);
60 }
61}
62
63void led_set_user(uint8_t usb_led) {
64 // Caps Lock Indicator
65 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
66 writePinLow(B2);
67 rgblight_setrgb(255, 110, 0);
68 }
69 // Layer Indicator
70 else {
71 switch (get_highest_layer(layer_state)) {
72 // Fn Layer Indicator
73 case _FN:
74 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 1);
75 break;
76 // Default Layer Indicator
77 case _BASE:
78 rgblight_setrgb(100, 255, 100);
79 break;
80 }
81 update_led();
82 }
83}
84
85layer_state_t layer_state_set_user(layer_state_t state) {
86 update_led();
87 return state;
88}
diff --git a/layouts/community/60_ansi_arrow/mrsendyyk/readme.md b/layouts/community/60_ansi_arrow/mrsendyyk/readme.md
deleted file mode 100644
index a2dedd4cc..000000000
--- a/layouts/community/60_ansi_arrow/mrsendyyk/readme.md
+++ /dev/null
@@ -1,70 +0,0 @@
1# 60 ANSI Arrow Keymap by [Sendy YK](https://mr.sendyyk.com)
2
3With RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator.
4
5## Default Layer
6
7![_BASE](https://raw.githubusercontent.com/mrsendyyk/qmk_firmware/development/images/60_ansi_arrow_keymap_base.png)
8
9## Fn Layer
10
11![_FN](https://raw.githubusercontent.com/mrsendyyk/qmk_firmware/development/images/60_ansi_arrow_keymap_fn.png)
12
13## RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator
14
15### Caps Lock Indicator
16
17```c
18 // Caps Lock Indicator
19 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
20 writePinLow(B2);
21 rgblight_setrgb(255, 110, 0);
22 }
23```
24
25### Num Lock Indicator
26
27```c
28 // Num Lock Indicator
29 if (host_keyboard_led_state().num_lock) {
30 rgblight_setrgb(225, 8, 0);
31 }
32```
33
34### Scroll Lock Indicator
35```c
36 // Scroll Lock Indicator
37 if (host_keyboard_led_state().scroll_lock) {
38 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 2);
39 }
40```
41
42### Layer Indicator
43
44```c
45 // Layer Indicator
46 else {
47 switch (get_highest_layer(layer_state)) {
48 // Fn Layer Indicator
49 case _FN:
50 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 1);
51 break;
52 // Default Layer Indicator
53 case _BASE:
54 rgblight_setrgb(100, 255, 100);
55 break;
56 }
57 update_led();
58 }
59```
60
61## Build The Firmware
62
63Make example for keyboard (after setting up your build environment):
64
65 make <keyboard_folder>:mrsendyyk
66
67More information:
68* [Setting Up Your QMK Environment](https://docs.qmk.fm/#/getting_started_build_tools)
69* [More Detailed make Instructions](https://docs.qmk.fm/#/getting_started_make_guide)
70* [The Complete Newbs Guide To QMK](https://docs.qmk.fm/#/newbs)
diff --git a/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/keymap.c b/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/keymap.c
new file mode 100644
index 000000000..8b285c9fb
--- /dev/null
+++ b/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/keymap.c
@@ -0,0 +1,141 @@
1/*
2 * 60 ANSI Arrow Split Backspace & 7U Space Keymap
3 * with RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator.
4 *
5 * Copyright (C) 2020 Sendy YK <https://mr.sendyyk.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#include QMK_KEYBOARD_H
22
23enum layer_names {
24 _BASE, // Base Layer
25 _FN, // Fn Layer
26 _RESET // Reset Layer
27};
28
29const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
30 /*
31 * [_BASE] Base Layer
32 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
33 * │Esc│1 │2 │3 │4 │5 │6 │7 │8 │9 │0 │- │+ │\ │Del│
34 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
35 * │Tab │Q │W │E │R │T │Y │U │I │O │P │[ │] │Bspc │
36 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
37 * │Caps │A │S │D │F │G │H │J │K │L │; │' │Return │
38 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
39 * │Shift │Z │X │C │V │B │N │M │, │. │Shift │↑ │/ │
40 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
41 * │Ctrl │OS │Alt │Space │Fn │← │↓ │→ │
42 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
43 */
44 [_BASE] = LAYOUT_60_ansi_arrow_split_bs_7u_spc(
45 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_DEL,
46 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,
47 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,
48 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
49 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(_FN), KC_LEFT, KC_DOWN, KC_RGHT
50 ),
51 /*
52 * [_FN] Fn Layer
53 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
54 * │` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ │Ejc│
55 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
56 * │ │ │ │End│RGB│ │ │ │Ins│ │PSc│ │ │Mute │
57 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
58 * │ │ │SLc│ │ │ │Hm │ │ │ │ │ │Pause │
59 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
60 * │Vol + │ │ │Cal│ │BLT│NLc│Ml │ │ │ │PgU│MSt│
61 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
62 * │Vol -│Rwd│FFd │Play │ │Prv│PgD│Nxt│
63 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
64 */
65 [_FN] = LAYOUT_60_ansi_arrow_split_bs_7u_spc(
66 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_EJCT,
67 _______, _______, _______, KC_END, RGB_TOG, _______, _______, _______, KC_INS, _______, KC_PSCR, _______, _______, KC_MUTE,
68 _______, _______, KC_SLCK, _______, _______, _______, KC_HOME, _______, _______, _______, _______, _______, KC_PAUS,
69 KC_VOLU, _______, _______, KC_CALC, _______, BL_TOGG, KC_NLCK, KC_MAIL, _______, _______, MO(_RESET), KC_PGUP, KC_MSTP,
70 KC_VOLD, KC_MRWD, KC_MFFD, KC_MPLY, _______, KC_MPRV, KC_PGDN, KC_MNXT
71 ),
72 /*
73 * [_RESET] Reset Layer
74 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
75 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
76 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
77 * │ │ │ │ │Rst│ │ │ │ │ │ │ │ │ │
78 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
79 * │ │ │ │ │ │ │ │ │ │ │ │ │ │
80 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
81 * │ │ │ │ │ │ │ │ │ │ │ │ │ │
82 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
83 * │ │ │ │ │ │ │ │ │
84 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
85 */
86 [_RESET] = LAYOUT_60_ansi_arrow_split_bs_7u_spc(
87 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
88 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______,
89 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
90 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
91 _______, _______, _______, _______, _______, _______, _______, _______
92 )
93};
94
95void keyboard_post_init_user(void) {
96 rgblight_enable_noeeprom();
97 rgblight_setrgb(100, 255, 100);
98}
99
100// RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator
101void update_led(void) {
102 // Num Lock Indicator
103 if (host_keyboard_led_state().num_lock) {
104 rgblight_setrgb(225, 8, 0);
105 }
106 // Scroll Lock Indicator
107 if (host_keyboard_led_state().scroll_lock) {
108 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 2);
109 }
110}
111
112void led_set_user(uint8_t usb_led) {
113 // Caps Lock Indicator
114 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
115 writePinLow(B2);
116 rgblight_setrgb(255, 110, 0);
117 }
118 // Layer Indicator
119 else {
120 switch (get_highest_layer(layer_state)) {
121 // Fn Layer Indicator
122 case _FN:
123 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 1);
124 break;
125 // Reset Layer Indicator
126 case _RESET:
127 rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 3);
128 break;
129 // Base Layer Indicator
130 case _BASE:
131 rgblight_setrgb(100, 255, 100);
132 break;
133 }
134 update_led();
135 }
136}
137
138layer_state_t layer_state_set_user(layer_state_t state) {
139 update_led();
140 return state;
141}
diff --git a/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/readme.md b/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/readme.md
new file mode 100644
index 000000000..d812ac343
--- /dev/null
+++ b/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/readme.md
@@ -0,0 +1,78 @@
1# 60 ANSI Arrow Split Backspace & 7U Space Keymap
2
3With RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator by [Sendy YK](https://mr.sendyyk.com).
4
5## Base Layer
6
7```c
8 /*
9 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
10 * │Esc│1 │2 │3 │4 │5 │6 │7 │8 │9 │0 │- │+ │\ │Del│
11 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
12 * │Tab │Q │W │E │R │T │Y │U │I │O │P │[ │] │Bspc │
13 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
14 * │Caps │A │S │D │F │G │H │J │K │L │; │' │Return │
15 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
16 * │Shift │Z │X │C │V │B │N │M │, │. │Shift │↑ │/ │
17 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
18 * │Ctrl │OS │Alt │Space │Fn │← │↓ │→ │
19 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
20 */
21```
22
23## Fn Layer
24
25```c
26 /*
27 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
28 * │` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ │Ejc│
29 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
30 * │ │ │ │End│RGB│ │ │ │Ins│ │PSc│ │ │Mute │
31 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
32 * │ │ │SLc│ │ │ │Hm │ │ │ │ │ │Pause │
33 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
34 * │Vol + │ │ │Cal│ │BLT│NLc│Ml │ │ │ │PgU│MSt│
35 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
36 * │Vol -│Rwd│FFd │Play │ │Prv│PgD│Nxt│
37 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
38 */
39```
40
41## Reset Layer
42
43```c
44 /*
45 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
46 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
47 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
48 * │ │ │ │ │Rst│ │ │ │ │ │ │ │ │ │
49 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
50 * │ │ │ │ │ │ │ │ │ │ │ │ │ │
51 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
52 * │ │ │ │ │ │ │ │ │ │ │ │ │ │
53 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
54 * │ │ │ │ │ │ │ │ │
55 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
56 */
57```
58
59## RGB Lighting/LED/Underglow as Caps Lock, Num Lock, Scroll Lock, and Layer Indicator
60
61### Caps Lock & Layer Indicator
62
63Set in `led_set_user` function.
64
65### Num Lock & Scroll Lock Indicator
66
67Set in `update_led` function.
68
69## Build The Firmware
70
71Make example for keyboard (after setting up your build environment):
72
73 make <keyboard_folder>:mrsendyyk FORCE_LAYOUT=60_ansi_arrow_split_bs_7u_spc
74
75More information:
76* [Setting Up Your QMK Environment](https://docs.qmk.fm/#/getting_started_build_tools)
77* [More Detailed make Instructions](https://docs.qmk.fm/#/getting_started_make_guide)
78* [The Complete Newbs Guide To QMK](https://docs.qmk.fm/#/newbs)
diff --git a/layouts/community/60_ansi_arrow/mrsendyyk/rules.mk b/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/rules.mk
index 5c3115dc3..5c3115dc3 100644
--- a/layouts/community/60_ansi_arrow/mrsendyyk/rules.mk
+++ b/layouts/community/60_ansi_arrow_split_bs_7u_spc/mrsendyyk/rules.mk
diff --git a/layouts/default/60_ansi_arrow/default_60_ansi_arrow/keymap.c b/layouts/default/60_ansi_arrow/default_60_ansi_arrow/keymap.c
index 565e9990a..c2bd4fa1b 100644
--- a/layouts/default/60_ansi_arrow/default_60_ansi_arrow/keymap.c
+++ b/layouts/default/60_ansi_arrow/default_60_ansi_arrow/keymap.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * 60_ansi_arrow Keymap 2 * Default 60 ANSI Arrow Keymap.
3 * 3 *
4 * Copyright (C) 2020 Sendy YK <https://mr.sendyyk.com> 4 * Copyright (C) 2020 Sendy YK <https://mr.sendyyk.com>
5 * 5 *
@@ -20,25 +20,28 @@
20#include QMK_KEYBOARD_H 20#include QMK_KEYBOARD_H
21 21
22enum layer_names { 22enum layer_names {
23 _BASE, // Default Layer 23 _BASE
24 _FN // Fn Layer
25}; 24};
26 25
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 26const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 // Default Layer 27 /*
28 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
29 * │Esc│1 │2 │3 │4 │5 │6 │7 │8 │9 │0 │- │+ │Bspc │
30 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
31 * │Tab │Q │W │E │R │T │Y │U │I │O │P │[ │] │\ │
32 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
33 * │Caps │A │S │D │F │G │H │J │K │L │; │' │Enter │
34 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
35 * │Shift │Z │X │C │V │B │N │M │, │. │Shift │↑ │/ │
36 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬───┼───┼───┤
37 * │Ctrl│GUI │Alt │Space │Alt│GUI│← │↓ │→ │
38 * └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┘
39 */
29 [_BASE] = LAYOUT_60_ansi_arrow( 40 [_BASE] = LAYOUT_60_ansi_arrow(
30 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, 41 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,
31 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 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,
32 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, 43 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,
33 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH, 44 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
34 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN), KC_LEFT, KC_DOWN, KC_RGHT 45 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_LEFT, KC_DOWN, KC_RGHT
35 ), 46 ),
36 // Fn Layer
37 [_FN] = LAYOUT_60_ansi_arrow(
38 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,
39 KC_BRIU, _______, _______, KC_END, RESET, _______, _______, _______, KC_INS, _______, KC_PSCR, _______, _______, KC_EJCT,
40 KC_BRID, _______, KC_SLCK, _______, _______, _______, KC_HOME, _______, _______, _______, _______, _______, KC_MUTE,
41 KC_VOLU, _______, _______, KC_CALC, _______, _______, KC_NLCK, KC_MAIL, _______, _______, KC_PAUS, KC_PGUP, _______,
42 KC_VOLD, KC_MRWD, KC_MFFD, KC_MPLY, KC_MSTP, _______, KC_MPRV, KC_PGDN, KC_MNXT
43 )
44}; 47};
diff --git a/layouts/default/60_ansi_arrow/info.json b/layouts/default/60_ansi_arrow/info.json
index 639433ea7..a8667e62c 100644
--- a/layouts/default/60_ansi_arrow/info.json
+++ b/layouts/default/60_ansi_arrow/info.json
@@ -7,73 +7,73 @@
7 "layouts": { 7 "layouts": {
8 "LAYOUT_60_ansi_arrow": { 8 "LAYOUT_60_ansi_arrow": {
9 "layout": [ 9 "layout": [
10 {"x":0, "y":0}, 10 {"x": 0, "y": 0},
11 {"x":1, "y":0}, 11 {"x": 1, "y": 0},
12 {"x":2, "y":0}, 12 {"x": 2, "y": 0},
13 {"x":3, "y":0}, 13 {"x": 3, "y": 0},
14 {"x":4, "y":0}, 14 {"x": 4, "y": 0},
15 {"x":5, "y":0}, 15 {"x": 5, "y": 0},
16 {"x":6, "y":0}, 16 {"x": 6, "y": 0},
17 {"x":7, "y":0}, 17 {"x": 7, "y": 0},
18 {"x":8, "y":0}, 18 {"x": 8, "y": 0},
19 {"x":9, "y":0}, 19 {"x": 9, "y": 0},
20 {"x":10, "y":0}, 20 {"x": 10, "y": 0},
21 {"x":11, "y":0}, 21 {"x": 11, "y": 0},
22 {"x":12, "y":0}, 22 {"x": 12, "y": 0},
23 {"x":13, "y":0, "w":2}, 23 {"x": 13, "y": 0, "w": 2},
24 24
25 {"x":0, "y":1, "w":1.5}, 25 {"x": 0, "y": 1, "w": 1.5},
26 {"x":1.5, "y":1}, 26 {"x": 1.5, "y": 1},
27 {"x":2.5, "y":1}, 27 {"x": 2.5, "y": 1},
28 {"x":3.5, "y":1}, 28 {"x": 3.5, "y": 1},
29 {"x":4.5, "y":1}, 29 {"x": 4.5, "y": 1},
30 {"x":5.5, "y":1}, 30 {"x": 5.5, "y": 1},
31 {"x":6.5, "y":1}, 31 {"x": 6.5, "y": 1},
32 {"x":7.5, "y":1}, 32 {"x": 7.5, "y": 1},
33 {"x":8.5, "y":1}, 33 {"x": 8.5, "y": 1},
34 {"x":9.5, "y":1}, 34 {"x": 9.5, "y": 1},
35 {"x":10.5, "y":1}, 35 {"x": 10.5, "y": 1},
36 {"x":11.5, "y":1}, 36 {"x": 11.5, "y": 1},
37 {"x":12.5, "y":1}, 37 {"x": 12.5, "y": 1},
38 {"x":13.5, "y":1, "w":1.5}, 38 {"x": 13.5, "y": 1, "w": 1.5},
39 39
40 {"x":0, "y":2, "w":1.75}, 40 {"x": 0, "y": 2, "w": 1.75},
41 {"x":1.75, "y":2}, 41 {"x": 1.75, "y": 2},
42 {"x":2.75, "y":2}, 42 {"x": 2.75, "y": 2},
43 {"x":3.75, "y":2}, 43 {"x": 3.75, "y": 2},
44 {"x":4.75, "y":2}, 44 {"x": 4.75, "y": 2},
45 {"x":5.75, "y":2}, 45 {"x": 5.75, "y": 2},
46 {"x":6.75, "y":2}, 46 {"x": 6.75, "y": 2},
47 {"x":7.75, "y":2}, 47 {"x": 7.75, "y": 2},
48 {"x":8.75, "y":2}, 48 {"x": 8.75, "y": 2},
49 {"x":9.75, "y":2}, 49 {"x": 9.75, "y": 2},
50 {"x":10.75, "y":2}, 50 {"x": 10.75, "y": 2},
51 {"x":11.75, "y":2}, 51 {"x": 11.75, "y": 2},
52 {"x":12.75, "y":2, "w":2.25}, 52 {"x": 12.75, "y": 2, "w": 2.25},
53 53
54 {"x":0, "y":3, "w":2.25}, 54 {"x": 0, "y": 3, "w": 2.25},
55 {"x":2.25, "y":3}, 55 {"x": 2.25, "y": 3},
56 {"x":3.25, "y":3}, 56 {"x": 3.25, "y": 3},
57 {"x":4.25, "y":3}, 57 {"x": 4.25, "y": 3},
58 {"x":5.25, "y":3}, 58 {"x": 5.25, "y": 3},
59 {"x":6.25, "y":3}, 59 {"x": 6.25, "y": 3},
60 {"x":7.25, "y":3}, 60 {"x": 7.25, "y": 3},
61 {"x":8.25, "y":3}, 61 {"x": 8.25, "y": 3},
62 {"x":9.25, "y":3}, 62 {"x": 9.25, "y": 3},
63 {"x":10.25, "y":3}, 63 {"x": 10.25, "y": 3},
64 {"x":11.25, "y":3, "w":1.75}, 64 {"x": 11.25, "y": 3, "w": 1.75},
65 {"x":13, "y":3}, 65 {"x": 13, "y": 3},
66 {"x":14, "y":3}, 66 {"x": 14, "y": 3},
67 67
68 {"x":0, "y":4, "w":1.25}, 68 {"x": 0, "y": 4, "w": 1.25},
69 {"x":1.25, "y":4, "w":1.25}, 69 {"x": 1.25, "y": 4, "w": 1.25},
70 {"x":2.5, "y":4, "w":1.25}, 70 {"x": 2.5, "y": 4, "w": 1.25},
71 {"x":3.75, "y":4, "w":6.25}, 71 {"x": 3.75, "y": 4, "w": 6.25},
72 {"x":10, "y":4}, 72 {"x": 10, "y": 4},
73 {"x":11, "y":4}, 73 {"x": 11, "y": 4},
74 {"x":12, "y":4}, 74 {"x": 12, "y": 4},
75 {"x":13, "y":4}, 75 {"x": 13, "y": 4},
76 {"x":14, "y":4} 76 {"x": 14, "y": 4}
77 ] 77 ]
78 } 78 }
79 } 79 }
diff --git a/layouts/default/60_ansi_arrow/readme.md b/layouts/default/60_ansi_arrow/readme.md
index e379caa34..e655a31f2 100644
--- a/layouts/default/60_ansi_arrow/readme.md
+++ b/layouts/default/60_ansi_arrow/readme.md
@@ -1,14 +1,22 @@
1# 60_ansi_arrow Keymap 1# 60_ansi_arrow Keymap
2 2
3by [Sendy YK](https://mr.sendyyk.com). 3Default 60 ANSI Arrow Keymap by [Sendy YK](https://mr.sendyyk.com).
4 4
5## Default Layer 5```c
6 6 /*
7![_BASE](https://raw.githubusercontent.com/mrsendyyk/qmk_firmware/development/images/60_ansi_arrow_keymap_base.png) 7 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
8 8 * │Esc│1 │2 │3 │4 │5 │6 │7 │8 │9 │0 │- │+ │Bspc │
9## Fn Layer 9 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
10 10 * │Tab │Q │W │E │R │T │Y │U │I │O │P │[ │] │\ │
11![_FN](https://raw.githubusercontent.com/mrsendyyk/qmk_firmware/development/images/60_ansi_arrow_keymap_fn.png) 11 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
12 * │Caps │A │S │D │F │G │H │J │K │L │; │' │Enter │
13 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
14 * │Shift │Z │X │C │V │B │N │M │, │. │Shift │↑ │/ │
15 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬───┼───┼───┤
16 * │Ctrl│GUI │Alt │Space │Alt│GUI│← │↓ │→ │
17 * └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┘
18 */
19```
12 20
13## Build The Firmware 21## Build The Firmware
14 22
diff --git a/layouts/default/60_ansi_arrow_split_bs_7u_spc/default_60_ansi_arrow_split_bs_7u_spc/keymap.c b/layouts/default/60_ansi_arrow_split_bs_7u_spc/default_60_ansi_arrow_split_bs_7u_spc/keymap.c
new file mode 100644
index 000000000..8f240beab
--- /dev/null
+++ b/layouts/default/60_ansi_arrow_split_bs_7u_spc/default_60_ansi_arrow_split_bs_7u_spc/keymap.c
@@ -0,0 +1,47 @@
1/*
2 * Default 60 ANSI Arrow Split Backspace & 7U Space Keymap.
3 *
4 * Copyright (C) 2020 Sendy YK <https://mr.sendyyk.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#include QMK_KEYBOARD_H
21
22enum layer_names {
23 _BASE
24};
25
26const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
27 /*
28 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
29 * │Esc│1 │2 │3 │4 │5 │6 │7 │8 │9 │0 │- │+ │\ │Del│
30 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
31 * │Tab │Q │W │E │R │T │Y │U │I │O │P │[ │] │Bspc │
32 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
33 * │Caps │A │S │D │F │G │H │J │K │L │; │' │Enter │
34 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
35 * │Shift │Z │X │C │V │B │N │M │, │. │Shift │↑ │/ │
36 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
37 * │Ctrl │GUI│Alt │Space │Alt│← │↓ │→ │
38 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
39 */
40 [_BASE] = LAYOUT_60_ansi_arrow_split_bs_7u_spc(
41 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_DEL,
42 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,
43 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,
44 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
45 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
46 )
47};
diff --git a/layouts/default/60_ansi_arrow_split_bs_7u_spc/info.json b/layouts/default/60_ansi_arrow_split_bs_7u_spc/info.json
new file mode 100644
index 000000000..78301af94
--- /dev/null
+++ b/layouts/default/60_ansi_arrow_split_bs_7u_spc/info.json
@@ -0,0 +1,80 @@
1{
2 "keyboard_name": "60% ANSI Arrow Split Backspace & 7U Space Layout",
3 "url": "https://mr.sendyyk.com",
4 "maintainer": "Sendy YK <mr@sendyyk.com>",
5 "width": 15,
6 "height": 5,
7 "layouts": {
8 "LAYOUT_60_ansi_arrow": {
9 "layout": [
10 {"x": 0, "y": 0},
11 {"x": 1, "y": 0},
12 {"x": 2, "y": 0},
13 {"x": 3, "y": 0},
14 {"x": 4, "y": 0},
15 {"x": 5, "y": 0},
16 {"x": 6, "y": 0},
17 {"x": 7, "y": 0},
18 {"x": 8, "y": 0},
19 {"x": 9, "y": 0},
20 {"x": 10, "y": 0},
21 {"x": 11, "y": 0},
22 {"x": 12, "y": 0},
23 {"x": 13, "y": 0},
24 {"x": 14, "y": 0},
25
26 {"x": 0, "y": 1, "w": 1.5},
27 {"x": 1.5, "y": 1},
28 {"x": 2.5, "y": 1},
29 {"x": 3.5, "y": 1},
30 {"x": 4.5, "y": 1},
31 {"x": 5.5, "y": 1},
32 {"x": 6.5, "y": 1},
33 {"x": 7.5, "y": 1},
34 {"x": 8.5, "y": 1},
35 {"x": 9.5, "y": 1},
36 {"x": 10.5, "y": 1},
37 {"x": 11.5, "y": 1},
38 {"x": 12.5, "y": 1},
39 {"x": 13.5, "y": 1, "w": 1.5},
40
41 {"x": 0, "y": 2, "w": 1.75},
42 {"x": 1.75, "y": 2},
43 {"x": 2.75, "y": 2},
44 {"x": 3.75, "y": 2},
45 {"x": 4.75, "y": 2},
46 {"x": 5.75, "y": 2},
47 {"x": 6.75, "y": 2},
48 {"x": 7.75, "y": 2},
49 {"x": 8.75, "y": 2},
50 {"x": 9.75, "y": 2},
51 {"x": 10.75, "y": 2},
52 {"x": 11.75, "y": 2},
53 {"x": 12.75, "y": 2, "w": 2.25},
54
55 {"x": 0, "y": 3, "w": 2.25},
56 {"x": 2.25, "y": 3},
57 {"x": 3.25, "y": 3},
58 {"x": 4.25, "y": 3},
59 {"x": 5.25, "y": 3},
60 {"x": 6.25, "y": 3},
61 {"x": 7.25, "y": 3},
62 {"x": 8.25, "y": 3},
63 {"x": 9.25, "y": 3},
64 {"x": 10.25, "y": 3},
65 {"x": 11.25, "y": 3, "w": 1.75},
66 {"x": 13, "y": 3},
67 {"x": 14, "y": 3},
68
69 {"x": 0, "y": 4, "w": 1.5},
70 {"x": 1.5, "y": 4},
71 {"x": 2.5, "y": 4, "w": 1.5},
72 {"x": 4, "y": 4, "w": 7},
73 {"x": 11, "y": 4},
74 {"x": 12, "y": 4},
75 {"x": 13, "y": 4},
76 {"x": 14, "y": 4}
77 ]
78 }
79 }
80}
diff --git a/layouts/default/60_ansi_arrow_split_bs_7u_spc/layout.json b/layouts/default/60_ansi_arrow_split_bs_7u_spc/layout.json
new file mode 100644
index 000000000..db9c8d167
--- /dev/null
+++ b/layouts/default/60_ansi_arrow_split_bs_7u_spc/layout.json
@@ -0,0 +1,5 @@
1[{a:7},"","","","","","","","","","","","","","",""],
2[{w:1.5},"","","","","","","","","","","","","",{w:1.5},""],
3[{w:1.75},"","","","","","","","","","","","",{w:2.25},""],
4[{w:2.25},"","","","","","","","","","",{w:1.75},"","",""],
5[{w:1.5},"","",{w:1.5},"",{w:7},"","","","",""]
diff --git a/layouts/default/60_ansi_arrow_split_bs_7u_spc/readme.md b/layouts/default/60_ansi_arrow_split_bs_7u_spc/readme.md
new file mode 100644
index 000000000..30292abb9
--- /dev/null
+++ b/layouts/default/60_ansi_arrow_split_bs_7u_spc/readme.md
@@ -0,0 +1,30 @@
1# 60_ansi_arrow_split_bs_7u_spc Keymap
2
3Default 60 ANSI Arrow Split Backspace & 7U Space Keymap by [Sendy YK](https://mr.sendyyk.com).
4
5```c
6 /*
7 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
8 * │Esc│1 │2 │3 │4 │5 │6 │7 │8 │9 │0 │- │+ │\ │Del│
9 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
10 * │Tab │Q │W │E │R │T │Y │U │I │O │P │[ │] │Bspc │
11 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
12 * │Caps │A │S │D │F │G │H │J │K │L │; │' │Enter │
13 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤
14 * │Shift │Z │X │C │V │B │N │M │, │. │Shift │↑ │/ │
15 * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴──┬───┼───┼───┤
16 * │Ctrl │GUI│Alt │Space │Alt│← │↓ │→ │
17 * └─────┴───┴─────┴───────────────────────────┴───┴───┴───┴───┘
18 */
19```
20
21## Build The Firmware
22
23Make example for keyboard (after setting up your build environment):
24
25 make <keyboard_folder>:default_60_ansi_arrow_split_bs_7u_spc
26
27More information:
28* [Setting Up Your QMK Environment](https://docs.qmk.fm/#/getting_started_build_tools)
29* [More Detailed make Instructions](https://docs.qmk.fm/#/getting_started_make_guide)
30* [The Complete Newbs Guide To QMK](https://docs.qmk.fm/#/newbs)