WLED/wled00/ntp.h
2020-03-28 08:30:51 -04:00

18 lines
344 B
C

#ifndef WLED_NTP_H
#define WLED_NTP_H
#include <Arduino.h>
/*
* Acquires time from NTP server
*/
void handleNetworkTime();
void sendNTPPacket();
bool checkNTPResponse();
void updateLocalTime();
void getTimeString(char* out);
bool checkCountdown();
void setCountdown();
byte weekdayMondayFirst();
void checkTimers();
#endif // WLED_NTP_H