AceTime
0.6.1
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.
src
ace_time
clock
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
ace_time
Definition:
BasicZone.h:15
ace_time::clock::NtpClock::kNtpServerName
static const char kNtpServerName[]
Default NTP Server.
Definition:
NtpClock.h:46
Generated by
1.8.13