Brandon, if I am running a song, say 108 BPM, and it’s some point during a mash up I want to maintain the beat but just increase the tempo to 120, is there a way to do that by sending signal via on song?
@Bassman46 I think it was CC 107 (for tempo below 128), but check from the midi command table found from Singular Sound website
“Getting Started with the BeatBuddy”
And from there the supplemental docs → MIDI commands
Use the following in OnSong to change the tempo to 180
MIDI: CC106:1@0, CC107:53@0
CC106:1 sets the tempo to 127+?
CC107:53 sets the tempo to +53 = 180
To set it back to 120
MIDI: CC106:0@0, CC107:120@0
CC106:0 sets the tempo to 0+?
CC107:120 sets the tempo to +120 = 120
(@0) means everything is sent on channel 1
1 Like