/* Rui Santos Complete project details at https://RandomNerdTutorials.com/esp32-date-time-ntp-client-server-arduino/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Modified by Panagiotis Toumpaniaris on 10/4/2025 */ #include <WiFi.h> #include "time.h" const char * ssid = "Vodafone_2.4G-12329" ; const char * password = "9XfndzdcCnPdXD6k" ; const char * ntpServer = "pool.ntp.org" ; const long gmtOffset_sec = 7200 ; const int daylightOffset_sec = 3600 ; void setup (){ pinMode ( 2 , OUTPUT ) ; Serial . begin ( 115200 ) ; // digitalWrite(2,HIGH); // Connect to Wi-Fi Serial . print ( "Connecting to " ) ; Serial . println ( ssid ) ; WiFi . begin ( s...