Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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