bpm modulation works now (som other stuff is still broken)

This commit is contained in:
--global
2023-05-13 00:40:42 +03:00
parent 395e5e7a4a
commit 4e6c9cc931

View File

@ -145,7 +145,7 @@ void loop() {
display.clearDisplay();
display.display();
}
if (masterClockMode == 2 || bpmModulationRange != 0) {
if (masterClockMode == 2) {
calculateBPMTiming();
}
}
@ -168,7 +168,10 @@ void clock() {
pulseCount++;
} else {
pulseCount = 0;
}
}
if (bpmModulationRange != 0) {
calculateBPMTiming();
}
}
}