From 9db0b4b4d7da5a388f4c7bc34b1547d49735c02e Mon Sep 17 00:00:00 2001 From: Lazar Obradovic Date: Wed, 11 Apr 2018 07:58:19 +0200 Subject: [PATCH] ntp_time_offset and net_day_light --- code/espurna/config/general.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/espurna/config/general.h b/code/espurna/config/general.h index 57f78115..f6147e31 100644 --- a/code/espurna/config/general.h +++ b/code/espurna/config/general.h @@ -1082,7 +1082,13 @@ PROGMEM const char* const custom_reset_string[] = { #ifndef NTP_TIMEOUT #define NTP_TIMEOUT 2000 // Set NTP request timeout to 2 seconds (issue #452) +#endif + +#ifndef NTP_TIME_OFFSET #define NTP_TIME_OFFSET 60 // Default timezone offset (GMT+1) +#endif + +#ifndef NTP_DAY_LIGHT #define NTP_DAY_LIGHT true // Enable daylight time saving by default #endif