summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/Tile.cpp
AgeCommit message (Collapse)AuthorFilesLines
2020-10-02Renamed DisplayApp/ to displayapp/Avamander1-61/+0
2020-08-17Fix most of the warnings. Remaining warnings come from nimble source code.JF1-1/+0
2020-08-14Refactor ScreenList to make it more generic : it can now contain any Screen ↵JF1-52/+13
type. Integrate this new ScreenList in SystemInfo. Add ApplicationList, which is a ScreenList of Tile. This allows to display a menu of more than 6 applications.
2020-07-11Merge branch 'develop' of https://github.com/JF002/Pinetime into musicAdam Pigg1-75/+4
2020-07-11Add start of music applictionAdam Pigg1-2/+2
2020-07-04Replace bitmap icons by font icons (provided by AwesomeFont and LVGL). These ↵JF1-75/+4
icons are smaller in memory and quicker to draw. BLE and battery icon replaced in Clock screen. Added heartbeat and step icons in Clock screen. Replace all labels in Menu by icons. Add doc to generate new font.
2020-03-28Encapsulate Notification management in NotificationManager. It implement a ↵JF1-1/+3
static array of notifications to avoid dynamic allocation.
2020-03-22Add new App : Sysinfo. It displays various info about the running system : ↵JF1-3/+3
version, date/time, battery, brightness and resetreason. It contains placeholder for future use (like mac address, uptime,...).
2020-03-15Encapsulate brightness controll into the class BrightnessController.JF1-2/+9
Add a new app to configure the brightness.
2020-03-02Move version display from Clock screen to the modal window (accessible from ↵JF1-1/+1
tile menu)
2020-03-01Fix Model that would crash when closing it.JF1-3/+3
2020-03-01Simplify Tile to improve refresh speed (it's not a tile anymore...).JF1-15/+18
Disable debug mode of lvgl.
2020-02-26Add new Screens (gauge, meter,...)JF1-1/+20
2020-02-23Re-enable BLE, BLE status on display and battery level on display.JF1-15/+25
2020-02-23Do not compile GFX and older fonts anymore.JF1-12/+27
Refactor SystemTask in its own class. Refactor Screen to be able to close current screen and open a new one. Re-enable sleep/wake up and propagate button event to Screens.
2020-02-20Re-enable BLE display on Clock screenJF1-3/+1
2020-02-16Add touch panel port to lvgl.JF1-0/+118
PoC of user interaction with 3 screen (clock, menu and app).