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

22 行
346 B

  1. #pragma once
  2. #include "Time2.h"
  3. #include "Hardware.h"
  4. namespace rtc {
  5. inline void powerOn() {
  6. hardware::i2c::powerOn();
  7. }
  8. inline void powerOff() {
  9. hardware::i2c::powerOff();
  10. }
  11. void setup();
  12. void getTime(tmElements_t &time);
  13. void setTime(tmElements_t &time);
  14. void setAlarm(uint16_t seconds);
  15. void setAlarm(tmElements_t &time);
  16. }