aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/DisplayApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/DisplayApp.h')
-rw-r--r--src/displayapp/DisplayApp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/displayapp/DisplayApp.h b/src/displayapp/DisplayApp.h
index f537651d..7dbac850 100644
--- a/src/displayapp/DisplayApp.h
+++ b/src/displayapp/DisplayApp.h
@@ -20,6 +20,7 @@
#include "BootErrors.h"
#include "utility/StaticStack.h"
+#include "displayapp/Controllers.h"
namespace Pinetime {
@@ -73,6 +74,9 @@ namespace Pinetime {
void SetFullRefresh(FullRefreshDirections direction);
void Register(Pinetime::System::SystemTask* systemTask);
+ void Register(Pinetime::Controllers::WeatherService* weatherService);
+ void Register(Pinetime::Controllers::MusicService* musicService);
+ void Register(Pinetime::Controllers::NavigationService* NavigationService);
private:
Pinetime::Drivers::St7789& lcd;
@@ -96,6 +100,7 @@ namespace Pinetime {
Pinetime::Components::LittleVgl lvgl;
Pinetime::Controllers::Timer timer;
+ AppControllers controllers;
TaskHandle_t taskHandle;
States state = States::Running;