aboutsummaryrefslogtreecommitdiffstats
path: root/src/DisplayApp/Screens/Music.h
diff options
context:
space:
mode:
authorAdam Pigg <adam@piggz.co.uk>2020-07-20 21:28:21 +0100
committerAdam Pigg <adam@piggz.co.uk>2020-07-20 21:28:21 +0100
commit5713eac1045394928de19e76fd00a172f63bffa7 (patch)
treea20e130e01147c4afc89981d7bcfa6773dc6445e /src/DisplayApp/Screens/Music.h
parent686e826f4e656546523e989535c74f286a91855b (diff)
Fully implement music app and service
SystemTask can return a reference to the nimbleController The nimbleController can return a reference to the musicService The musicService get a connection handle from the nimbleController The musicApp communicated directly with the musicService
Diffstat (limited to 'src/DisplayApp/Screens/Music.h')
-rw-r--r--src/DisplayApp/Screens/Music.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DisplayApp/Screens/Music.h b/src/DisplayApp/Screens/Music.h
index 538e1daf..95cac0f0 100644
--- a/src/DisplayApp/Screens/Music.h
+++ b/src/DisplayApp/Screens/Music.h
@@ -35,12 +35,14 @@ namespace Pinetime {
lv_obj_t * btnVolUp;
lv_obj_t * txtArtist;
lv_obj_t * txtTrack;
+ lv_obj_t * txtPlayPause;
bool running = true;
Pinetime::Controllers::MusicService &musicService;
std::string m_artist;
std::string m_album;
std::string m_track;
+ unsigned char m_status;
};
}
}