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
+9
View File
@@ -0,0 +1,9 @@
#pragma once
// Renders the home screen: current weather, soft rain warning, and the
// next 2 calendar events. Fetches weather + calendar data if the 10 minute
// refresh interval has elapsed, or if forced (e.g. manual retry).
void renderHomeScreen(bool forceRefresh = false);
// Call regularly from loop() to check if a refresh is due.
void updateHomeScreen();