aboutsummaryrefslogtreecommitdiff
path: root/layouts/community
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/community
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/community')
-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
5 files changed, 219 insertions, 158 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