Initial commit

This commit is contained in:
2026-08-01 23:38:09 +02:00
parent 0d9cca3668
commit a99b986544
28 changed files with 1476 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
#pragma once
#include <Arduino.h>
#include <vector>
struct CalendarEvent {
long id = 0;
String summary;
String startAt;
String endAt;
bool allDay = false;
String status;
};
struct CalendarData {
bool valid = false;
std::vector<CalendarEvent> events;
};
// Fetches and parses the calendar API (already limited to next 10 events
// server-side).
CalendarData fetchCalendar();