Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
230 B

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