diff options
| author | ZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com> | 2020-12-03 19:46:36 +0530 |
|---|---|---|
| committer | ZephyrLabs <65145081+ZephyrLabs@users.noreply.github.com> | 2020-12-03 19:46:36 +0530 |
| commit | 1d69c79942622eddb531406cabaed77d73bb4c40 (patch) | |
| tree | f9967580db59d979d6c6a044b1e958f941b7b3ac /src/displayapp/DisplayApp.cpp | |
| parent | b404ac50dbd8cdfe8722987124889c309d42e372 (diff) | |
Addition of new files in MakeList
added Paddle.cpp and Paddle.h
Diffstat (limited to 'src/displayapp/DisplayApp.cpp')
| -rw-r--r-- | src/displayapp/DisplayApp.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index efc042b7..c0963243 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -11,6 +11,7 @@ #include "displayapp/screens/FirmwareValidation.h" #include "displayapp/screens/Gauge.h" #include "displayapp/screens/InfiniPaint.h" +#include "displayapp/screens/paddle.h" #include "displayapp/screens/Meter.h" #include "displayapp/screens/Music.h" #include "displayapp/screens/Notifications.h" @@ -203,6 +204,7 @@ void DisplayApp::RunningState() { case Apps::Meter: currentScreen.reset(new Screens::Meter(this)); break; case Apps::Gauge: currentScreen.reset(new Screens::Gauge(this)); break; case Apps::Paint: currentScreen.reset(new Screens::InfiniPaint(this, lvgl)); break; + case Apps::Paddle: currentScreen.reset(new Screens::Paddle(this, lvgl)); break; case Apps::Brightness : currentScreen.reset(new Screens::Brightness(this, brightnessController)); break; case Apps::Music : currentScreen.reset(new Screens::Music(this, systemTask.nimble().music())); break; case Apps::FirmwareValidation: currentScreen.reset(new Screens::FirmwareValidation(this, validator)); break; |
