15 lines
328 B
C
15 lines
328 B
C
#ifndef NEXTCLOUD_CAL_H
|
|
#define NEXTCLOUD_CAL_H
|
|
|
|
#include <Arduino.h>
|
|
#include <time.h>
|
|
|
|
struct StartEnd {
|
|
time_t start;
|
|
time_t end;
|
|
};
|
|
|
|
struct StartEnd calculateStartEnd();
|
|
String downloadICSFile(const String& url, const String& startTime, const String& endTime, const String& username, const String& password);
|
|
|
|
#endif |