/ firmware / src / networking / sntp.h
sntp.h
 1  #pragma once
 2  #include <config.h>
 3  #include <stdint.h>
 4  
 5  namespace networking::sntp {
 6  
 7  bool sync();
 8  bool isSynced();
 9  const char *accessLocalTimeString();
10  uint32_t accessUTCEpoch();
11  
12  } // namespace networking::sntp
13