AceTime  0.7
Date and time classes for Arduino that support timezones from the TZ Database, and a system clock that can synchronize from an NTP server or an RTC chip.
NtpClock.cpp
1 /*
2  * MIT License
3  * Copyright (c) 2018 Brian T. Park
4  */
5 
6 #include "../common/compat.h"
7 #include "NtpClock.h"
8 
9 #if defined(ESP8266) || defined(ESP32)
10 
11 namespace ace_time {
12 namespace clock {
13 
14 const char NtpClock::kNtpServerName[] = "us.pool.ntp.org";
15 
16 }
17 }
18 
19 #endif
static const char kNtpServerName[]
Default NTP Server.
Definition: NtpClock.h:46