| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | MotorController: no need to make this function a class function | Reinhold Gschweicher | 2022-02-19 | 1 | -1/+1 |
| | | | | | | The `StopRinging()` function was used just in `Notifications.h` screen. That screen already has access to a `motorController` object. | ||||
| * | Notifications: use motorController object instead of class function | Reinhold Gschweicher | 2022-02-19 | 2 | -10/+19 |
| | | | | | We get the motoroController object, so store and use it. | ||||
| * | SystemTask: remove unused ble includes | Reinhold Gschweicher | 2022-02-19 | 1 | -9/+0 |
| | | | | | | Remove unused includes. The firmware still compiles fine without the includes. | ||||
| * | Improved alarm alert handling | Riku Isokoski | 2022-02-13 | 3 | -10/+41 |
| | | |||||
| * | Merge branch 'statusBarTimeFormat' of https://github.com/mruss77/InfiniTime ↵ | Jean-François Milants | 2022-02-13 | 6 | -10/+38 |
| |\ | | | | | | | | | | | | | into mruss77-statusBarTimeFormat # Conflicts: # src/components/datetime/DateTimeController.cpp | ||||
| | * | Status bar displays time in 12 or 24 hour format based on settings | Mark Russell | 2021-11-10 | 6 | -10/+37 |
| | | | |||||
| * | | Fix biased BLE pass key generation | Zorvalt | 2022-02-12 | 1 | -1/+22 |
| | | | |||||
| * | | SystemTask: fix static cast missing brackets syntax | Reinhold Gschweicher | 2022-02-12 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | The static_cast syntax requires brackets around the input variable. The implementation worked because the used input are defines, which add the missing brackets like the following: ```cpp #define GPIO_PIN_CNF_SENSE_Low (3UL) ``` | ||||
| * | | Make switch disabled state slightly dimmer | Riku Isokoski | 2022-02-12 | 1 | -1/+2 |
| | | | |||||
| * | | Fix switch default state | Riku Isokoski | 2022-02-12 | 1 | -0/+2 |
| | | | |||||
| * | | Alarm: Fix missing stop button. Revert alert layout | Riku Isokoski | 2022-02-12 | 1 | -4/+6 |
| | | | |||||
| * | | Alarm: Change checkable button for a switch | Riku Isokoski | 2022-02-12 | 4 | -33/+51 |
| | | | |||||
| * | | Added alarm 12 hour interface | Eli Weiss | 2022-01-31 | 3 | -8/+39 |
| | | | |||||
| * | | Corrected capitalization | Eli Weiss | 2022-01-31 | 2 | -5/+5 |
| | | | |||||
| * | | Corrected code formatting | Eli Weiss | 2022-01-31 | 2 | -28/+30 |
| | | | | | | | | | Corrected formatting and removed unnecessary variable time24H | ||||
| * | | Changed setHourLabels function to handle 24H too | Eli Weiss | 2022-01-31 | 2 | -36/+28 |
| | | | | | | | | | Changed setHourLabels function to handle 24 hour time labeling, changed to private | ||||
| * | | Consolidated label changes, optimizations | Eli Weiss | 2022-01-31 | 1 | -36/+15 |
| | | | | | | | | | Consolidated 12 hour label changes to function. Removed use of strings, struct. | ||||
| * | | Consolidated time conversion logic | Eli Weiss | 2022-01-31 | 2 | -87/+94 |
| | | | | | | | | | Consolidated 24 hour to 12 hour time conversion logic into function, addressed formatting issues, cleaned up code. | ||||
| * | | Removed redundant brackets | Eli Weiss | 2022-01-31 | 1 | -5/+3 |
| | | | | | | | | | Also corrected orphaned bracket | ||||
| * | | Cleaned up redundant if statements, spacing | Eli Weiss | 2022-01-31 | 2 | -47/+43 |
| | | | | | | | | | Removed redundant if statements in hour button logic. Spacing is now in line with repo guidelines. | ||||
| * | | Added 12 hour set time | Eli Weiss | 2022-01-31 | 3 | -8/+80 |
| | | | |||||
| * | | Merge pull request #949 from Riksu9000/fix_alarm | JF | 2022-01-26 | 2 | -0/+5 |
| |\ \ | | | | | | | Fix alarm on time change | ||||
| | * | | Fix alarm on time change | Riku Isokoski | 2022-01-22 | 2 | -0/+5 |
| | | | | |||||
| * | | | Merge pull request #954 from NeroBurner/music_initialize_lastLength | JF | 2022-01-26 | 1 | -1/+1 |
| |\ \ \ | | | | | | | | | Music: initialize totalLength to have non-random data from the start | ||||
| | * | | | Music: initialize totalLength to have non-random data from the start | Reinhold Gschweicher | 2022-01-23 | 1 | -1/+1 |
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the first `Music::Refresh` call the lastLength and totalLength are not initialized. The `lastLength` value is read first from the musicService. Naturally in the first itereation that is changed and `UpdateLength()` is called. There the variable `totalLength` is used as well, but that variable isn't initialed to a sensible value yet. This leads to sometimes the `Music.h` screen segfaulting (depending on the random uninitialized data in the `lastLength` variable) | ||||
| * | | | Merge pull request #959 from NeroBurner/stopwatch_include_cleanup | JF | 2022-01-26 | 2 | -7/+4 |
| |\ \ \ | | | | | | | | | StopWatch: cleanup unused includes and use relative to src includes | ||||
| | * | | | StopWatch: cleanup unused includes and use relative to src includes | Reinhold Gschweicher | 2022-01-26 | 2 | -7/+4 |
| | |/ / | |||||
| * | | | Merge pull request #531 from hatmajster/heart-rate-gain-setting | JF | 2022-01-26 | 1 | -2/+2 |
| |\ \ \ | | | | | | | | | Heart rate sensor - HRS gain changed to x8 | ||||
| | * | | | Hrs3300: changed default gain to x8 | hatmajster | 2022-01-25 | 1 | -2/+2 |
| | |/ / | |||||
| * | | | Merge pull request #876 from yehoshuapw/hrs-driver-changes | JF | 2022-01-26 | 3 | -8/+7 |
| |\ \ \ | | | | | | | | | Hrs driver changes | ||||
| | * | | | changed ReadHrs and ReadAls to uint32, and did static_cast instead of hidden ↵ | Yehoshua Pesach Wallach | 2021-12-13 | 3 | -6/+5 |
| | | | | | | | | | | | | | | | | | cast when using it | ||||
| | * | | | order ReadHrs, ReadAls bitwise according to bit ordering | Yehoshua Pesach Wallach | 2021-12-13 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | Merge pull request #903 from Riksu9000/improved_notif_timeout | JF | 2022-01-26 | 4 | -18/+49 |
| |\ \ \ \ | | | | | | | | | | | Improved notification timeout | ||||
| | * | | | | Improved notification timeout | Riku Isokoski | 2022-01-01 | 4 | -18/+49 |
| | | | | | | |||||
| * | | | | | Merge pull request #939 from NeroBurner/buttonHandler_relative_include | JF | 2022-01-26 | 2 | -2/+2 |
| |\ \ \ \ \ | | | | | | | | | | | | | ButtonHandler: includes relative to src dir | ||||
| | * | | | | | ButtonHandler: includes relative to src dir | Reinhold Gschweicher | 2022-01-16 | 2 | -2/+2 |
| | | |_|/ / | |/| | | | |||||
| * | | | | | Merge pull request #940 from NeroBurner/systemTask_queue_include | JF | 2022-01-26 | 1 | -0/+1 |
| |\ \ \ \ \ | | | | | | | | | | | | | SystemTask: add missing queue.h include for QueueHandle_t | ||||
| | * | | | | | SystemTask: add missing queue.h include for QueueHandle_t | Reinhold Gschweicher | 2022-01-16 | 1 | -0/+1 |
| | |/ / / / | |||||
| * | | | | | Merge pull request #944 from NeroBurner/no_generated_files_in_source_dir | JF | 2022-01-26 | 1 | -0/+2 |
| |\ \ \ \ \ | | | | | | | | | | | | | Create Version.h in binary dir instead of src dir | ||||
| | * | | | | | Create Version.h in binary dir instead of src dir | Reinhold Gschweicher | 2022-01-17 | 1 | -0/+2 |
| | |/ / / / | | | | | | | | | | | | | | | | | | | | | Don't use source directory for generated files. Use the binary (build) directory instead. | ||||
| * / / / / | PTS and digital watchface code cleanups | Riku Isokoski | 2022-01-20 | 4 | -118/+79 |
| |/ / / / | |||||
| * | | | | Update shakewake menu option | Riku Isokoski | 2022-01-06 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Merge pull request #912 from SteveAmor/chimesradio | JF | 2022-01-05 | 1 | -0/+4 |
| |\ \ \ \ | | | | | | | | | | | Updates radio button style for Chimes Option | ||||
| | * | | | | Updates radio button style | SteveAmor | 2022-01-04 | 1 | -0/+4 |
| | | | | | | |||||
| * | | | | | Merge branch 'ShakeWake' of https://github.com/geekbozu/InfiniTime into ↵ | Jean-François Milants | 2022-01-04 | 12 | -26/+262 |
| |\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | geekbozu-ShakeWake # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/screens/settings/Settings.cpp | ||||
| | * | | | | Fix setting removing it self from wake settings when opening calibration ↵ | Tim Keller | 2022-01-04 | 2 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | window twice. | ||||
| | * | | | | Made calibration window enable Accel wakeups for setting and calibration ↵ | Tim Keller | 2022-01-04 | 2 | -1/+9 |
| | | | | | | | | | | | | | | | | | | | | | even when wake mode is inactive. | ||||
| | * | | | | Remove "fancy" settings display and always show ShakeWakeThresholdSetting | Tim Keller | 2022-01-04 | 1 | -14/+10 |
| | | | | | | |||||
| | * | | | | Fixed button color changing | Tim Keller | 2022-01-04 | 2 | -9/+9 |
| | | | | | | |||||
| | * | | | | Added visual aide for shake strength | Tim Keller | 2022-01-04 | 2 | -37/+60 |
| | | | | | | | | | | | | | | | | | | | | | Added delay to starting calibration | ||||
