選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
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. }