NTPClient-master

所属分类:其他
开发工具:WINDOWS
文件大小:7KB
下载次数:2
上传日期:2017-09-02 14:45:18
上 传 者yohnxy
说明:  arduino ntp client library

文件列表:
.travis.yml (248, 2016-06-01)
CHANGELOG (529, 2016-06-01)
NTPClient.cpp (5709, 2016-06-01)
NTPClient.h (2296, 2016-06-01)
examples (0, 2016-06-01)
examples\Advanced (0, 2016-06-01)
examples\Advanced\Advanced.ino (897, 2016-06-01)
examples\Basic (0, 2016-06-01)
examples\Basic\Basic.ino (631, 2016-06-01)
keywords.txt (447, 2016-06-01)
library.json (497, 2016-06-01)
library.properties (294, 2016-06-01)

# NTPClient [![Build Status](https://travis-ci.org/arduino-libraries/NTPClient.svg?branch=master)](https://travis-ci.org/arduino-libraries/NTPClient) Connect to a NTP server, here is how: ```cpp #include // change next line to use with another board/shield #include //#include // for WiFi shield //#include // for WiFi 101 shield or MKR1000 #include const char *ssid = ""; const char *password = ""; WiFiUDP ntpUDP; // By default 'time.nist.gov' is used with 60 seconds update interval and // no offset NTPClient timeClient(ntpUDP); // You can specify the time server pool and the offset, (in seconds) // additionaly you can specify the update interval (in milliseconds). // NTPClient timeClient(ntpUDP, "europe.pool.ntp.org", 3600, 60000); void setup(){ Serial.begin(115200); WiFi.begin(ssid, password); while ( WiFi.status() != WL_CONNECTED ) { delay ( 500 ); Serial.print ( "." ); } timeClient.begin(); } void loop() { timeClient.update(); Serial.println(timeClient.getFormattedTime()); delay(1000); } ```

近期下载者

相关文件


收藏者