summaryrefslogtreecommitdiff
path: root/src/systemtask/Messages.h
AgeCommit message (Collapse)AuthorFilesLines
2022-12-27added low battery messageminacode1-0/+1
2022-12-18Update clang-tidy configuration and fix some warnings (#1474)Riku Isokoski1-2/+2
Don't enable coding conventions from unrelated projects. Only enable generic checks.
2022-06-05Apply clang-format to all C++ filesFinlay Davidson1-32/+32
2022-02-20Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵Jean-François Milants1-1/+1
into evergreen22-airplane-mode Apply a few changes that were requested in the PR during the review. # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp
2022-02-20Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵Jean-François Milants1-0/+1
into evergreen22-airplane-mode # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp
2022-01-02resolves conflictsSteveAmor1-1/+5
2021-12-23Add airplane mode featureJames A. Jerkins1-0/+1
Implements 'Airplane mode' feature to disable and enable bluetooth/ble Adds airplaneMode as a non-persisted setting Adds a setting menu for switching airplane mode on and off Displays an airplane symbol on the Digital watch face and the PineTimeStyle watch face when airplane mode is enabled Always enables bluetooth/ble on boot (disable airplane mode) Alphabetizes the settings menu options Style cleanups Closes #632
2021-12-10List Dir works?Tim Keller1-0/+2
2021-12-09Connect and bond with a passkeyJames A. Jerkins1-0/+1
This commit adds the following: Passkey pairing - passkey is displayed on watch Swipe down to clear passkey screen Connection encryption Connection bonding Automatic reconnects to a bonded peripheral Trusted device on Android Note that persisting the bond between reboots is NOT included in this commit. Therefore, rebooting the watch will cause reconnect failures. You must delete the bond from the phone to reconnect/pair.
2021-11-07Chimes optionSteveAmor1-0/+2
2021-10-25Return button action instead of pushing messagesRiku Isokoski1-5/+1
2021-10-25Newer buttonhandlerRiku Isokoski1-1/+6
2021-10-04Improve battery percentage calculation and reportingRiku Isokoski1-1/+1
While charging, percentage should only go up, and while discharging, percentage should only go down.
2021-09-16resolve conflict in src/systemtask/Messages.hMark Russell1-1/+3
2021-09-16Revert "Merge upstream"Mark Russell1-3/+1
This reverts commit 1d43adcdfa7bd15ba45c0c9d7c59c0ff99176b9c.
2021-09-16Merge upstreamMark Russell1-1/+3
2021-09-10Created basic alarm appMark Russell1-1/+3
2021-08-14Make battery reading periodic. Add events. Disable pullupRiku Isokoski1-1/+3
2021-06-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants1-0/+26
variable instead of variables on the heap. We don't need them on the heap as we know their size at build time, it'll reduce memory fragmentation and it'll make memory analysis easier.