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

17 行
236 B

  1. #pragma once
  2. #include <TimeLib.h>
  3. #include <Time.h>
  4. namespace rtc {
  5. void powerOn();
  6. void powerOff();
  7. void setup();
  8. time_t getTime();
  9. void setTime(time_t &time);
  10. void setAlarm(uint16_t seconds);
  11. void setAlarm(time_t &time);
  12. }