aboutsummaryrefslogtreecommitdiff
path: root/users/stanrc85
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-11 07:03:42 +0000
committerQMK Bot <hello@qmk.fm>2021-01-11 07:03:42 +0000
commitff2bd2ee18c91d290ecabf64215a4bad5e67a168 (patch)
treed3dc040372464987783ff1bb355ee36fca19a9e8 /users/stanrc85
parent7464c1d3308666e04c89dfd7e19ba1e7e7f62ec6 (diff)
parent4ae5c3a90567cd793a36fea03a807e82ed85eb49 (diff)
downloadqmk_firmware-ff2bd2ee18c91d290ecabf64215a4bad5e67a168.tar.gz
qmk_firmware-ff2bd2ee18c91d290ecabf64215a4bad5e67a168.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'users/stanrc85')
-rw-r--r--users/stanrc85/rules.mk2
-rw-r--r--users/stanrc85/startup_fanfare.c18
2 files changed, 10 insertions, 10 deletions
diff --git a/users/stanrc85/rules.mk b/users/stanrc85/rules.mk
index fc2560d3a..0c0a8dd7f 100644
--- a/users/stanrc85/rules.mk
+++ b/users/stanrc85/rules.mk
@@ -20,7 +20,7 @@ ifeq ($(strip $(KEYBOARD)), projectkb/alice/rev2)
20endif 20endif
21ifeq ($(strip $(KEYBOARD)), sneakbox/aliceclone) 21ifeq ($(strip $(KEYBOARD)), sneakbox/aliceclone)
22 SRC += indicator_layers_sneakbox.c 22 SRC += indicator_layers_sneakbox.c
23 #SRC += startup_fanfare.c 23 SRC += startup_fanfare.c
24 OPT_DEFS += -DHAS_INDICATORS 24 OPT_DEFS += -DHAS_INDICATORS
25 OPT_DEFS += -DHAS_ROTARY 25 OPT_DEFS += -DHAS_ROTARY
26 VIA_ENABLE = yes 26 VIA_ENABLE = yes
diff --git a/users/stanrc85/startup_fanfare.c b/users/stanrc85/startup_fanfare.c
index 507d9e389..ae73261ae 100644
--- a/users/stanrc85/startup_fanfare.c
+++ b/users/stanrc85/startup_fanfare.c
@@ -16,24 +16,24 @@ void matrix_scan_user(void) {
16 counter++; 16 counter++;
17 if (counter == 1) { 17 if (counter == 1) {
18 top = 1; 18 top = 1;
19 writePin(INDICATOR_PIN_0, !top); 19 writePin(INDICATOR_PIN_0, top);
20 wait_ms(200); 20 wait_ms(300);
21 top = 0; 21 top = 0;
22 writePin(INDICATOR_PIN_0, !top); 22 writePin(INDICATOR_PIN_0, top);
23 } 23 }
24 if (counter == 2) { 24 if (counter == 2) {
25 middle = 1; 25 middle = 1;
26 writePin(INDICATOR_PIN_1, !middle); 26 writePin(INDICATOR_PIN_1, middle);
27 wait_ms(200); 27 wait_ms(300);
28 middle = 0; 28 middle = 0;
29 writePin(INDICATOR_PIN_1, !middle); 29 writePin(INDICATOR_PIN_1, middle);
30 } 30 }
31 if (counter == 3) { 31 if (counter == 3) {
32 bottom = 1; 32 bottom = 1;
33 writePin(INDICATOR_PIN_2, !bottom); 33 writePin(INDICATOR_PIN_2, bottom);
34 wait_ms(200); 34 wait_ms(300);
35 bottom = 0; 35 bottom = 0;
36 writePin(INDICATOR_PIN_2, !bottom); 36 writePin(INDICATOR_PIN_2, bottom);
37 } 37 }
38 if (counter == 4) { 38 if (counter == 4) {
39 is_enabled = is_rgblight_startup = false; 39 is_enabled = is_rgblight_startup = false;