aboutsummaryrefslogtreecommitdiffstats
path: root/src/systemtask/Messages.h
Commit message (Collapse)AuthorAgeFilesLines
* SystemTask: Move MotorController to DisplayAppRiku Isokoski2023-02-251-1/+0
| | | | | Vibrations should be associated with something happening on the UI. Therefore SystemTask should not be controlling the motor.
* Format header filesFinlay Davidson2023-01-091-0/+1
| | | | In my PR updating clang-format, I forgot to also format the headers.
* added low battery messageminacode2022-12-271-0/+1
|
* Update clang-tidy configuration and fix some warnings (#1474)Riku Isokoski2022-12-181-2/+2
| | | | | Don't enable coding conventions from unrelated projects. Only enable generic checks.
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-32/+32
|
* Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵Jean-François Milants2022-02-201-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
* Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵Jean-François Milants2022-02-201-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
| * Add airplane mode featureJames A. Jerkins2021-12-231-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
* | resolves conflictsSteveAmor2022-01-021-1/+5
|\|
| * List Dir works?Tim Keller2021-12-101-0/+2
| |
| * Connect and bond with a passkeyJames A. Jerkins2021-12-091-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.
| * Return button action instead of pushing messagesRiku Isokoski2021-10-251-5/+1
| |
| * Newer buttonhandlerRiku Isokoski2021-10-251-1/+6
| |
* | Chimes optionSteveAmor2021-11-071-0/+2
|/
* Improve battery percentage calculation and reportingRiku Isokoski2021-10-041-1/+1
| | | | | While charging, percentage should only go up, and while discharging, percentage should only go down.
* resolve conflict in src/systemtask/Messages.hMark Russell2021-09-161-1/+3
|\
| * Make battery reading periodic. Add events. Disable pullupRiku Isokoski2021-08-141-1/+3
| |
* | Revert "Merge upstream"Mark Russell2021-09-161-3/+1
| | | | | | | | This reverts commit 1d43adcdfa7bd15ba45c0c9d7c59c0ff99176b9c.
* | Merge upstreamMark Russell2021-09-161-1/+3
| |
* | Created basic alarm appMark Russell2021-09-101-1/+3
|/
* Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants2021-06-061-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.