esphub/NewDisplayDriver/esphub/nextcloud_cal.h
2024-12-05 22:21:46 +00:00

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