Transform CC Number to Channel

Hi, I’m trying to Transform midi cc from one channel to program changes on different channels based on cc number. However channel number is not being updated according to cc number. What’s wrong here?

Since the CCs and Channels have different range (0 - 127 vs 1 - 16), it automatically rescales the values (or CC numbers) between these ranges, so CC value 8 would become Ch. 2, CC value 32 would become Ch. 5.

So either use CC#0, CC#8, CC#16, etc… to get channels 1, 2, 3, …, or use a couple more pipes to rescale CC#0 - CC#15 to CC#0 - CC#127 range, to make it look like a 1:1 mapping.

2 Likes