| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Tweak gamma on ST7789 and match UI colors | Riku Isokoski | 2022-04-25 | 1 | -1/+1 |
| | | | | | | This change will increase the color accuracy of the PineTime and make UI development with the simulator easier. | ||||
| * | Add missing break | Riku Isokoski | 2021-12-30 | 1 | -0/+1 |
| | | |||||
| * | Improve gesture consistency across the firmware | Riku Isokoski | 2021-12-30 | 1 | -0/+14 |
| | | |||||
| * | Update includes to to be relative to src directory | Reinhold Gschweicher | 2021-11-15 | 1 | -2/+2 |
| | | | | | | | | Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories. | ||||
| * | Fix unsigned/signed comparison warning in Metronome.cpp | Reinhold Gschweicher | 2021-09-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | `xTaskGetTickCount()` returns a `TickType_t`, which is defined as an `uint32_t`. This is compared to the `bpm` variable, which is a `int16_t` in the range of 40 to 220 as defined in the constructor. ```cpp lv_arc_set_range(bpmArc, 40, 220); ``` Just assume that `bpm` is greater than 0, as this would result in a divison by zero or negative values, which would unintentionally underflow to a very large number. | ||||
| * | Merge branch 'develop' into refresh_rework | Riku Isokoski | 2021-08-28 | 1 | -3/+0 |
| |\ | |||||
| | * | Merge branch 'develop' into new_touch_handler | Riku Isokoski | 2021-08-18 | 1 | -75/+44 |
| | |\ | |||||
| | * | | Fix most issues | Riku Isokoski | 2021-07-16 | 1 | -1/+1 |
| | | | | |||||
| | * | | New touch handler, with issues | Riku Isokoski | 2021-07-15 | 1 | -3/+0 |
| | | | | |||||
| * | | | Merge branch 'develop' into refresh_rework | Riku Isokoski | 2021-08-15 | 1 | -2/+2 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | Merge branch 'call-improvements' of https://github.com/Riksu9000/InfiniTime ↵ | Jean-François Milants | 2021-08-14 | 1 | -2/+2 |
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | into Riksu9000-call-improvements # Conflicts: # src/displayapp/screens/Metronome.cpp | ||||
| | | * | | Improvements | Riku Isokoski | 2021-08-01 | 1 | -2/+2 |
| | | |/ | |||||
| * | | | Merge branch 'develop' into refresh_rework | Riku Isokoski | 2021-08-14 | 1 | -75/+44 |
| |\| | | |||||
| | * | | Improve metronome | Riku Isokoski | 2021-08-14 | 1 | -75/+44 |
| | |/ | |||||
| * / | Refresh rework | Riku Isokoski | 2021-07-19 | 1 | -2/+4 |
| |/ | |||||
| * | Fix build issues since Metronome app has been merged. | Jean-François Milants | 2021-06-12 | 1 | -3/+3 |
| | | |||||
| * | add basic metronome app (#409) | Bryton Hall | 2021-06-12 | 1 | -0/+169 |
| * add basic metronome app * add bpb, tap to bpm, update widgets * use event pressed for bpm tap * move case statement break to the right place * narrow bpm selection range, override touch events * fix arc knob style * re-enable sleeping in destructor | |||||
