From b773437d45956c8e14d0bf76f76f3ada6ad963c2 Mon Sep 17 00:00:00 2001 From: Dirk Jahnke Date: Tue, 4 Jun 2019 21:43:48 +0200 Subject: [PATCH] Changed default clock mode to Realclock --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index f3cc4e7..1d903f7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,7 +23,7 @@ NTPClient timeClient(ntpUDP, "europe.pool.ntp.org", 3600, 60000); #define MODE_DEMO 1 #define MODE_REALCLOCK 2 #define MODE_FASTCLOCK 3 -static int appMode = MODE_DEMO; +static int appMode = MODE_REAL;