ESP8266 SHT21 sensor
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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__