aboutsummaryrefslogtreecommitdiffstats
path: root/src/DisplayApp/Screens/Tile.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-02-23 16:14:03 +0100
committerJF <jf@codingfield.com>2020-02-23 16:14:03 +0100
commitf07ffab4c1fa876e8da9a1bcc895ecf0dfa75acf (patch)
treead7fc589d76988e1977d54926a8f776c4340b846 /src/DisplayApp/Screens/Tile.h
parent02772b996fb26146cf38fc6deccff7f43a49dfd6 (diff)
Re-enable BLE, BLE status on display and battery level on display.
Diffstat (limited to 'src/DisplayApp/Screens/Tile.h')
-rw-r--r--src/DisplayApp/Screens/Tile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/DisplayApp/Screens/Tile.h b/src/DisplayApp/Screens/Tile.h
index 03cfb6d2..630fc666 100644
--- a/src/DisplayApp/Screens/Tile.h
+++ b/src/DisplayApp/Screens/Tile.h
@@ -18,10 +18,10 @@ namespace Pinetime {
explicit Tile(DisplayApp* app);
~Tile() override;
- bool Refresh(bool fullRefresh) override;
+ bool Refresh() override;
bool OnButtonPushed() override;
- void OnObjectEvent(lv_obj_t* obj, lv_event_t event);
+ void OnObjectEvent(lv_obj_t* obj, lv_event_t event, uint32_t buttonId);
private:
@@ -50,7 +50,8 @@ namespace Pinetime {
uint32_t clickCount = 0 ;
uint32_t previousClickCount = 0;
- void StartApp();
+ void StartClockApp();
+ void StartTestApp();
bool running = true;
};
}