Controlling sp404 mkii with my DJM T1 mixer / endless encoder decrease not working

Followed the video tutorial - but can’t make it decrease only increase. What do i need to do? I wan’t a maximum of 43 steps instead of 127. That works but only when increasing. Decreasing resets to value of zero. Tried all sort of things but didn’t work. Also what is the logic behind MIDI B0 53 00 is outputtet as CC83? Which I want to - just trying to learn here :slight_smile:

Another thing I wan’t to output this to different channels 1,2,3,4 when I get it to work - how do i do that with RAW midi data?


Skærmbillede 2023-07-17 kl. 11.04.17

Hi,

The first rule is incorrect.

You had

if pp>64 then rr=-128

It should have been

if pp>64 then rr=pp-128

Point me to the video tutorial you used and I will correct it there as well.

Attached is the corrected project file.

I setup my aliases as follows
image

You can learn more about aliases from this tutorial.

Rel-to-abs-w-scaling-2023-07-17.bmtp (913 Bytes)

Steve Caldwell
Bome Customer Care


Also available for paid consulting services: bome@sniz.biz

Hi, sorry I missed this question.

Add the following rules to change the outgoing channel

// Change outgong channel
// set outgoing channel in tt (0-15 for CH 1-16)
tt=1
oo=0xb0+tt

Then change the outgoing message to

oo 43 ga

Steve Caldwell
Bome Customer Care


Also available for paid consulting services: bome@sniz.biz

Thanks a a lot
Steve U made my day… It’s working perfectly!

I used this tutorial Tutorial: Map a relative encoder to absolute control change with Bome MIDI Translator Pro - YouTube

1 Like

OK, it appears that the project file I posted was correct so perhaps you inadvertently changed the incorrect rule.

Steve Caldwell
Bome Customer Care


Also available for paid consulting services: bome@sniz.biz

Oh yeah sorry - didn’t realise you thought it was an error in your video… I just typed in as video wen’t along and aparently mistyped… :slight_smile:

OK, just making sure it was right in case others needed it.

Steve

1 Like