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.

16 wiersze
270 B

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