bpm modulation works now (som other stuff is still broken)
This commit is contained in:
@ -145,7 +145,7 @@ void loop() {
|
|||||||
display.clearDisplay();
|
display.clearDisplay();
|
||||||
display.display();
|
display.display();
|
||||||
}
|
}
|
||||||
if (masterClockMode == 2 || bpmModulationRange != 0) {
|
if (masterClockMode == 2) {
|
||||||
calculateBPMTiming();
|
calculateBPMTiming();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -168,7 +168,10 @@ void clock() {
|
|||||||
pulseCount++;
|
pulseCount++;
|
||||||
} else {
|
} else {
|
||||||
pulseCount = 0;
|
pulseCount = 0;
|
||||||
}
|
}
|
||||||
|
if (bpmModulationRange != 0) {
|
||||||
|
calculateBPMTiming();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user