diff --git a/esp_clock.ino b/esp_clock.ino index a00eee0..2904979 100644 --- a/esp_clock.ino +++ b/esp_clock.ino @@ -33,7 +33,7 @@ // Globals //########################################################################## -#define STASSID "vulturul" +#define STASSID "Miracle" #define STAPSK "***REMOVED***" #define TIME_24_HOUR true @@ -203,7 +203,7 @@ void loop() { hours = 24 + hours; } if (hours > 23) { - hours = hours - 23; + hours = hours - 24; } Serial.print(hours); // print the hour Serial.print(':');