From 253f9a43fa26eac435cda9b8a05add172c714aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= <75033623+htamas1210@users.noreply.github.com> Date: Sun, 7 Dec 2025 11:58:20 +0100 Subject: [PATCH] Change interval from 5 minutes to 24 hours --- IrSendRecv.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IrSendRecv.ino b/IrSendRecv.ino index 1641f15..5d99204 100644 --- a/IrSendRecv.ino +++ b/IrSendRecv.ino @@ -18,7 +18,7 @@ const long gmtOffset_sec PROGMEM = 3600; const int daylightOffset PROGMEM = 3600; unsigned long lastRunTime = 0; -const unsigned long interval PROGMEM = 5 * 60; +const unsigned long interval PROGMEM = 24 * 60 * 60; WebServer server(80); HTTPClient httpClient; @@ -153,4 +153,4 @@ void printTime(){ } else { Serial.println("Failed to obtain time"); } -} \ No newline at end of file +}