aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings/Settings.h
Commit message (Collapse)AuthorAgeFilesLines
* Fixes in side cover togglingDiego Miguel2022-06-111-4/+6
|
* Add Infineat settings to settings controllerDiego Miguel2022-06-111-0/+24
|
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-14/+13
|
* Replace airplane mode with a bluetooth toggleRiku Isokoski2022-04-021-1/+1
|
* Merge branch 'airplane-mode' of https://github.com/evergreen22/InfiniTime ↵Jean-François Milants2022-02-201-5/+5
| | | | | | | | | | | | | 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-4/+35
|\ | | | | | | | | | | | | | | | | | | | | 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-4/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge branch 'statusBarTimeFormat' of https://github.com/mruss77/InfiniTime ↵Jean-François Milants2022-02-131-1/+0
|\ \ | | | | | | | | | | | | | | | | | | into mruss77-statusBarTimeFormat # Conflicts: # src/components/datetime/DateTimeController.cpp
| * | Status bar displays time in 12 or 24 hour format based on settingsMark Russell2021-11-101-1/+0
| | |
* | | Merge branch 'ShakeWake' of https://github.com/geekbozu/InfiniTime into ↵Jean-François Milants2022-01-041-4/+18
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | geekbozu-ShakeWake # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/screens/settings/Settings.cpp
| * | | Actually save the thresholdTim Keller2022-01-041-1/+5
| | | | | | | | | | | | | | | | Prevent a few crashes due to an LV task being active when it shouldnt be.
| * | | Better Sensitivity UI, Calibration button addedTim Keller2022-01-041-2/+1
| | | |
| * | | Add averaging to wake threshold. Makes it take more then just a "flick" to ↵Tim Keller2022-01-041-2/+2
| | | | | | | | | | | | | | | | turn on
| * | | Add start of settings app for senstivity.Tim Keller2022-01-041-2/+11
| | | | | | | | | | | | | | | | | | | | really just debugging. I want to make it more configurable then high med low. Position of setting needs a new location...dynamicly adding it currently at the end. Which honestly im fine with.
| * | | Added Shake to wakeTim Keller2022-01-041-3/+5
| | |/ | |/|
* | | Adds enum class for chimes optionSteveAmor2022-01-041-6/+7
| | |
* | | resolves conflictsSteveAmor2022-01-021-1/+0
|\| |
| * | Settings: remove unused driver includeReinhold Gschweicher2021-12-021-1/+0
| |/
* | update settings versionSteveAmor2021-11-071-1/+1
| |
* | Chimes optionSteveAmor2021-11-071-0/+11
|/
* Merge branch 'develop' into disable_notif_onlyRiku Isokoski2021-09-131-1/+1
|\
| * Merge pull request #617 from ColinKinloch/wake_up_mode_setting_changeJF0022021-09-121-1/+1
| |\ | | | | | | Correct change test for wake up mode setting
| | * Correct change test for wake up mode settingColin Kinloch2021-08-261-1/+1
| | |
* | | Toggle notifications only, keep vibrations.Riku Isokoski2021-09-121-7/+7
|/ /
* | Settings : use enums instead of ints to store colors. Group all PTS settings ↵Jean-François Milants2021-08-281-20/+26
| | | | | | | | | | | | | | into a struct. PTS/SettingsPTS : Convert to/from LVGL color and Settings::Color, add functions to reduce code duplication. Adapt SettingPineTimeStyle with the last Screen Interface
* | Increment settings value, remove old hacky fixKieran Cawthray2021-07-251-1/+1
| |
* | Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray2021-07-201-8/+31
|\|
| * Multiple wakeup sources (#290)Kozova12021-07-141-8/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Allow multiple wakeup modes at the same time. This commit adds multiple wakeup modes support. It does so by storing them as a uint8_t bitfield enum. It changes the following functions: Since multiple modes can be on now, older version would not cut it: WakeUpMode getWakeupMode() -> std::bitset<3> getWakeUpModes() Where each bit corresponds to a WakeUpMode We still need a way to check whether a specific wakeup mode is on, so: bool isWakeUpModeOn(const WakeUpMode mode) This function was changed to work correctly with the new implementation. setWakeUpMode(WakeupMode mode, bool enable) Previously, systemtask would exit SystemTask::OnTouchEvent() if the wake up mode was None or RaiseWrist, to prevent waking up when a touch was received. However, after enabling using multiple WakeUpModes, this caused a bug where when RaiseWrist was checked with SingleTap or DoubleTap, the tap detection wouldn't work. This commit fixes that bug. Next commit will update the settings WakeUpMode select UI to reflect these changes. Signed-off-by: Kozova1 <mug66kk@gmail.com> * Updated UI to reflect multiple WakeUp sources being available. Signed-off-by: Kozova1 <mug66kk@gmail.com>
* | Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray2021-07-121-30/+28
|\|
| * Using littlefs (#438)joaquim.org2021-07-111-30/+28
| | | | | | | | | | | | | | | | | | * add submodule littlefs * base fs * Save settings using littlefs * Small fixes and suggestions from PR * More small fixes from PR suggestions * Code clean up * Change SpiNorFlash functions to be private in FS
* | PineTimeStyle color picker add settings integrationKieran Cawthray2021-06-241-0/+31
| |
* | Revert "Reset"Kieran Cawthray2021-05-181-1/+9
| | | | | | | | This reverts commit 378fa6b4016b65e2d7b128fdc3ce89c4ca779a4d.
* | ResetKieran Cawthray2021-05-181-9/+1
|/
* Merge branch 'develop' ofJoaquim2021-04-261-76/+101
|\ | | | | | | https://github.com/JF002/InfiniTime into StepsApp
| * Changed access modified indentationAvamander2021-04-241-2/+2
| |
| * Reformatted all the files according to clang-format styleAvamander2021-04-241-71/+94
| |
* | Fix button size and default step goalJoaquim2021-04-201-1/+1
| |
* | New Steps appJoaquim2021-04-191-0/+6
|/ | | | | | Settings to set the steps goal More detail in Motion app New 42px Font
* Big UI and navigation RewriteJoaquim2021-04-041-6/+81
| | | | | | | | | | | new navigation add some color to the apps redesign menus new settings menu new quick settings code clean up size reduction by converting navigation images to font and more...
* Multi face support, analog clock, 12/24 configJoaquim2021-02-241-0/+30