Do not show MIDI tempo. Serial MIDI is too unstable. CV ext seems pretty stable when given a steady clock, but I need to try unstable sources / polyrhythms.

This commit is contained in:
2025-06-03 07:33:50 -07:00
parent 01bf09d4f5
commit c1b29924f7
2 changed files with 6 additions and 2 deletions

View File

@ -293,7 +293,12 @@ void DisplayMainPage() {
if (app.selected_param == 0) {
gravity.display.setFont(LARGE_FONT);
char num_str[3];
sprintf(num_str, "%d", gravity.clock.Tempo());
// Serial MIID is too unstable to display bpm in real time.
if (app.selected_source == SOURCE_EXTERNAL_MIDI) {
sprintf(num_str, "%s", "EXT");
} else {
sprintf(num_str, "%d", gravity.clock.Tempo());
}
textWidth = gravity.display.getUTF8Width(num_str);
gravity.display.drawStr(32 - (textWidth / 2), textY, num_str);
gravity.display.setFont(TEXT_FONT);