From 90b033a9afa15dc3334c4897dae24aa3f4d6f66f Mon Sep 17 00:00:00 2001 From: Nicu Hodos Date: Wed, 4 Jun 2025 16:51:07 +0200 Subject: [PATCH] display negative timer --- include/display.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/display.h b/include/display.h index 4101cde..b7a0d85 100644 --- a/include/display.h +++ b/include/display.h @@ -79,7 +79,7 @@ namespace Display { }); Task tDisplayTimer(SECONDS(10), TASK_ONCE + 1, []{ - clockDisplay.print(timer > 0 ? timer : 0, DEC); + clockDisplay.print(timer, DEC); clockDisplay.writeDisplay(); }, &ts, false, nullptr, []{