25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
290 B

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