From e8e16bdb8b1b53d073bc49d01d2590923c600431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Thu, 7 Nov 2024 20:06:15 +0100 Subject: [PATCH] Increase scroll speed for smoother look --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 27bc21e..cbb7281 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -240,7 +240,7 @@ bool fetchWeatherData() { int scrollPos = SCREEN_WIDTH; // Global variable to keep track of the scroll position unsigned long lastScrollTime = 0; // To control the scroll speed -const int scrollDelay = 75; // Delay in milliseconds between scroll updates +const int scrollDelay = 40; // Delay in milliseconds between scroll updates void displayWeatherData() { display.clearDisplay();