Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

17 řádky
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. }