init: rough companion app stub

This commit is contained in:
2026-05-07 18:35:58 +02:00
commit 5f017ac05d
73 changed files with 3520 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
enum OnboardingStatus {
/// No admin user exists yet.
notStarted,
/// Admin user created, floor plan not yet saved.
awaitingFloorPlan,
/// Floor plan saved, no sensors enrolled yet.
awaitingFirstSensor,
/// At least one sensor enrolled; onboarding considered complete.
complete,
}