diff options
| author | QMK Bot <hello@qmk.fm> | 2021-01-11 07:03:42 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2021-01-11 07:03:42 +0000 |
| commit | ff2bd2ee18c91d290ecabf64215a4bad5e67a168 (patch) | |
| tree | d3dc040372464987783ff1bb355ee36fca19a9e8 /users/stanrc85/startup_fanfare.c | |
| parent | 7464c1d3308666e04c89dfd7e19ba1e7e7f62ec6 (diff) | |
| parent | 4ae5c3a90567cd793a36fea03a807e82ed85eb49 (diff) | |
| download | qmk_firmware-ff2bd2ee18c91d290ecabf64215a4bad5e67a168.tar.gz qmk_firmware-ff2bd2ee18c91d290ecabf64215a4bad5e67a168.zip | |
Merge remote-tracking branch 'origin/master' into develop
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; |
