From 971e8cf30efe7e5ceff88ce24e6be05f000ccb79 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 31 Jan 2023 12:03:12 -0500 Subject: [PATCH] Make the life tracker the default app --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 0e3a6dd..de675dc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -571,8 +571,8 @@ void setup(void) { M5.Display.setCursor(0, M5.Display.height() / 4); M5.Display.println("Starting up..."); - app = new Clock; - current_app = App::Clock; + app = new LifeTracker; + current_app = App::LifeTracker; } void switch_app(App::Choices next) {