WLED/wled00/ntp.h

18 lines
344 B
C
Raw Normal View History

2020-03-28 13:30:51 +01:00
#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