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.

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