summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Metronome.cpp
AgeCommit message (Collapse)Author
2021-12-30Add missing breakRiku Isokoski
2021-12-30Improve gesture consistency across the firmwareRiku Isokoski
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher
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.
2021-09-16Fix unsigned/signed comparison warning in Metronome.cppReinhold Gschweicher
`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.
2021-08-28Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-18Merge branch 'develop' into new_touch_handlerRiku Isokoski
2021-08-15Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-14Merge branch 'call-improvements' of https://github.com/Riksu9000/InfiniTime ↵Jean-François Milants
into Riksu9000-call-improvements # Conflicts: # src/displayapp/screens/Metronome.cpp
2021-08-14Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-14Improve metronomeRiku Isokoski
2021-08-01ImprovementsRiku Isokoski
2021-07-19Refresh reworkRiku Isokoski
2021-07-15Fix most issuesRiku Isokoski
2021-07-15New touch handler, with issuesRiku Isokoski
2021-06-12Fix build issues since Metronome app has been merged.Jean-François Milants
2021-06-12add basic metronome app (#409)Bryton Hall
* 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