diff options
author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2021-01-11 02:03:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-10 23:03:12 -0800 |
commit | 4ae5c3a90567cd793a36fea03a807e82ed85eb49 (patch) | |
tree | 80f43afe68fb300a3d3c38375484d63fac5764c8 /users | |
parent | 4c48518a4ef25f52a9a5d214041c9aeb3e0546df (diff) |
[Keymap] stanrc85 Keymap/userspace updates (#11349)
* keymap updates
* adding fanfare back
Diffstat (limited to 'users')
-rw-r--r-- | users/stanrc85/rules.mk | 2 | ||||
-rw-r--r-- | users/stanrc85/startup_fanfare.c | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/users/stanrc85/rules.mk b/users/stanrc85/rules.mk index fc2560d3a1..0c0a8dd7f6 100644 --- a/users/stanrc85/rules.mk +++ b/users/stanrc85/rules.mk @@ -20,7 +20,7 @@ ifeq ($(strip $(KEYBOARD)), projectkb/alice/rev2) endif ifeq ($(strip $(KEYBOARD)), sneakbox/aliceclone) SRC += indicator_layers_sneakbox.c - #SRC += startup_fanfare.c + SRC += startup_fanfare.c OPT_DEFS += -DHAS_INDICATORS OPT_DEFS += -DHAS_ROTARY VIA_ENABLE = yes diff --git a/users/stanrc85/startup_fanfare.c b/users/stanrc85/startup_fanfare.c index 507d9e389c..ae73261ae5 100644 --- a/users/stanrc85/startup_fanfare.c +++ b/users/stanrc85/startup_fanfare.c @@ -16,24 +16,24 @@ void matrix_scan_user(void) { counter++; if (counter == 1) { top = 1; - writePin(INDICATOR_PIN_0, !top); - wait_ms(200); + writePin(INDICATOR_PIN_0, top); + wait_ms(300); top = 0; - writePin(INDICATOR_PIN_0, !top); + writePin(INDICATOR_PIN_0, top); } if (counter == 2) { middle = 1; - writePin(INDICATOR_PIN_1, !middle); - wait_ms(200); + writePin(INDICATOR_PIN_1, middle); + wait_ms(300); middle = 0; - writePin(INDICATOR_PIN_1, !middle); + writePin(INDICATOR_PIN_1, middle); } if (counter == 3) { bottom = 1; - writePin(INDICATOR_PIN_2, !bottom); - wait_ms(200); + writePin(INDICATOR_PIN_2, bottom); + wait_ms(300); bottom = 0; - writePin(INDICATOR_PIN_2, !bottom); + writePin(INDICATOR_PIN_2, bottom); } if (counter == 4) { is_enabled = is_rgblight_startup = false; |