forked from me-no-dev/ESPAsyncWebServer
to start sntp:
```cpp
void startSNTP(){
time_t rawtime;
configTime(3 * 3600, 0, "pool.ntp.org", "time.nist.gov");
while(time(&rawtime) == 0) delay(10);
}
```
to start sntp:
```cpp
void startSNTP(){
time_t rawtime;
configTime(3 * 3600, 0, "pool.ntp.org", "time.nist.gov");
while(time(&rawtime) == 0) delay(10);
}
```