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/stanrc85 | |
| parent | 4c48518a4ef25f52a9a5d214041c9aeb3e0546df (diff) | |
| download | qmk_firmware-4ae5c3a90567cd793a36fea03a807e82ed85eb49.tar.gz qmk_firmware-4ae5c3a90567cd793a36fea03a807e82ed85eb49.zip | |
[Keymap] stanrc85 Keymap/userspace updates (#11349)
* keymap updates
* adding fanfare back
Diffstat (limited to 'users/stanrc85')
| -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 fc2560d3a..0c0a8dd7f 100644 --- a/users/stanrc85/rules.mk +++ b/users/stanrc85/rules.mk | |||
| @@ -20,7 +20,7 @@ ifeq ($(strip $(KEYBOARD)), projectkb/alice/rev2) | |||
| 20 | endif | 20 | endif |
| 21 | ifeq ($(strip $(KEYBOARD)), sneakbox/aliceclone) | 21 | ifeq ($(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; |
