From 1b35c285df0a94942fa3aed3f73dc5aed2521851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Thu, 28 Nov 2024 19:35:03 +0100 Subject: [PATCH] Fix text --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6daaea7..954026b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -139,7 +139,7 @@ void fetchActiveProblems() { void playAlertMelody() { int toneDuration = 60; // Each tone lasts 150ms - int pauseDuration = 20; // Pause between tones + int pauseDuration = 30; // Pause between tones // Play first tone tone(PIN_BUZZER, 1500); // 1000 Hz @@ -214,7 +214,7 @@ void displayProblems() { display.setTextSize(1); display.fillRect(112,35,16,11,0); display.drawRect(112,35,16,11,1); - display.setCursor(113,37); + display.setCursor(114,37); display.print(totalProblems); display.display(); }