fixes cooldown flashing (#1515)
* unify rate of cooldown flashing * adjusted flashing threshold * revert adjusted flashing threshold * revert follow-up
This commit is contained in:
@@ -186,7 +186,7 @@ void drawHomeScreen(bool buttonLockout) {
|
|||||||
// If we have a tip connected draw the temp, if not we leave it blank
|
// If we have a tip connected draw the temp, if not we leave it blank
|
||||||
if (!tipDisconnectedDisplay) {
|
if (!tipDisconnectedDisplay) {
|
||||||
// draw in the temp
|
// 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
|
gui_drawTipTemp(false, FontStyle::LARGE); // draw in the temp
|
||||||
} else {
|
} else {
|
||||||
// Draw in missing tip symbol
|
// Draw in missing tip symbol
|
||||||
|
|||||||
Reference in New Issue
Block a user