ESP8266 SHT21 sensor
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ntp.h 254B

1234567891011
  1. #ifndef __NTP_H__
  2. #define __NTP_H__
  3. extern unsigned long timestamp; // received epoch time, 0 until valid
  4. extern unsigned long timeReceived; // systick matching received epoch, 0 until valid
  5. void ntpInit(void);
  6. void ntpRun(void);
  7. #endif // __NTP_H__