From 01f612c6642dfb42e66d5e685263725d00d74646 Mon Sep 17 00:00:00 2001 From: Merlin Schumacher Date: Wed, 27 May 2020 16:51:52 +0200 Subject: [PATCH] blend colors in fluid transition --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 96c56c3..075c655 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -32,8 +32,8 @@ void renderSecondHand() upcomingPixelColor = DimColor(100 - percent, secondColor); uint8_t nextPixel = (secondHand + 1) % 60; - setPixel(secondHand, currentPixelColor, false); - setPixel(nextPixel, upcomingPixelColor, false); + setPixel(secondHand, currentPixelColor, config.config.blendColors); + setPixel(nextPixel, upcomingPixelColor, config.config.blendColors); } else {