Closed mgood7123 closed 3 years ago
with double bpm = (i / 1000.0 * 1000) + 15 is the + 15 meant to be there?
double bpm = (i / 1000.0 * 1000) + 15
+ 15
also could this be extracted out of a service? like so it does not require a service?
Yes, the "+ 15" is meant to be there. This makes the minimum BPM sent from that demo user interface 15. The same minimum is also enforced by the default PFSeqConfig setting MIN_BPM.
with
double bpm = (i / 1000.0 * 1000) + 15
is the+ 15
meant to be there?also could this be extracted out of a service? like so it does not require a service?