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
+11
View File
@@ -0,0 +1,11 @@
#pragma once
// Simple screen enum used as a state machine. Each screen has a render
// function that is called on refresh, and each screen owns its own last-
// fetch timestamp so refresh intervals can differ per screen.
enum class ScreenId {
HOME,
WEATHER_DETAIL,
CALENDAR_DETAIL,
MVG
};