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/startup_fanfare.c | |
| 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/startup_fanfare.c')
| -rw-r--r-- | users/stanrc85/startup_fanfare.c | 18 |
1 files changed, 9 insertions, 9 deletions
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; |
