From 1b84097e075acf879f3b4d410ee5ca3d7b5055c1 Mon Sep 17 00:00:00 2001 From: discip <53649486+discip@users.noreply.github.com> Date: Sat, 31 Dec 2022 12:41:00 +0100 Subject: [PATCH] fixes cooldown flashing (#1515) * unify rate of cooldown flashing * adjusted flashing threshold * revert adjusted flashing threshold * revert follow-up --- source/Core/Threads/OperatingModes/HomeScreen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Core/Threads/OperatingModes/HomeScreen.cpp b/source/Core/Threads/OperatingModes/HomeScreen.cpp index 0f9182bd..6ce4116a 100644 --- a/source/Core/Threads/OperatingModes/HomeScreen.cpp +++ b/source/Core/Threads/OperatingModes/HomeScreen.cpp @@ -186,7 +186,7 @@ void drawHomeScreen(bool buttonLockout) { // If we have a tip connected draw the temp, if not we leave it blank if (!tipDisconnectedDisplay) { // draw in the temp - if (!(getSettingValue(SettingsOptions::CoolingTempBlink) && (xTaskGetTickCount() % 260 < 160))) + if (!(getSettingValue(SettingsOptions::CoolingTempBlink) && (xTaskGetTickCount() % 1000 < 300))) gui_drawTipTemp(false, FontStyle::LARGE); // draw in the temp } else { // Draw in missing tip symbol @@ -210,4 +210,4 @@ void drawHomeScreen(bool buttonLockout) { GUIDelay(); } } -} \ No newline at end of file +}