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

17 行
324 B

  1. #pragma once
  2. #include "Time2.h"
  3. #include "Hardware.h"
  4. namespace rtc {
  5. void setup();
  6. float getTemperature();
  7. timestamp_t getTime();
  8. void getTime(tmElements_t &time);
  9. void setTime(timestamp_t time);
  10. void setTime(const tmElements_t &time);
  11. void setAlarm(uint16_t seconds);
  12. void setAlarm(const tmElements_t &time);
  13. }