You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 regels
231 B

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