Merge branch 'develop' into refresh_rework

This commit is contained in:
Riku Isokoski
2021-08-15 13:35:15 +03:00
19 changed files with 216 additions and 180 deletions

View File

@@ -86,9 +86,9 @@ void Metronome::Refresh() {
counter--;
if (counter == 0) {
counter = bpb;
motorController.SetDuration(90);
motorController.RunForDuration(90);
} else {
motorController.SetDuration(30);
motorController.RunForDuration(30);
}
}
}