Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
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. }