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

15 строки
255 B

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