From 76c773e273d37fbda42c357237df80cf32eaac53 Mon Sep 17 00:00:00 2001 From: "R. Steve McKown" Date: Tue, 6 Dec 2011 19:52:55 -0700 Subject: [PATCH] Always fade between colors The A and B positions now act exactly the same, except B engages auto-off. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 840d83a..8f51cf2 100644 --- a/main.c +++ b/main.c @@ -163,7 +163,7 @@ int main(void) /* Next incolor and fade steps */ incolor_steps = rand_incolor_steps(speed); - fade_steps = (buttons & IN_ROCKERA) ? 1 : rand_fade_steps(speed); + fade_steps = rand_fade_steps(speed); /* Compute increment and remainder for each led */ red.increment = (newr - red.value) / fade_steps; -- 2.39.2