ftp82
(ftp82)
July 17, 2023, 9:15am
1
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
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?
SteveC
(Steve)
July 17, 2023, 12:42pm
2
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
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
SteveC
(Steve)
July 17, 2023, 12:57pm
3
ftp82:
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?
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
ftp82
(ftp82)
July 17, 2023, 1:29pm
4
1 Like
SteveC
(Steve)
July 17, 2023, 5:00pm
5
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
ftp82
(ftp82)
July 18, 2023, 8:18am
6
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…
SteveC
(Steve)
July 18, 2023, 12:43pm
7
OK, just making sure it was right in case others needed it.
Steve
1 Like