removed timezone, handled via JS

This commit is contained in:
Paul
2019-08-20 19:02:01 +02:00
parent 2e54c48dc4
commit 2aae90b7cf
6 changed files with 25 additions and 33 deletions

View File

@@ -16,12 +16,11 @@
class NtpClient {
public:
void ICACHE_FLASH_ATTR Ntp(const char * server, int8_t tz, time_t syncSecs);
void ICACHE_FLASH_ATTR Ntp(const char * server, time_t syncMins);
ICACHE_FLASH_ATTR virtual ~NtpClient();
static char * TimeServerName;
static IPAddress timeServer;
static int8_t timezone;
static time_t syncInterval;
static AsyncUDP udpListener;