Hi everyone,
I want to connect bitwig -> pd using OSC. I have communication working from pd -> bitwig, but I am puzzled at oscparse. Here's what is coming from bitwig:
/track/5/selected 1
/track/9/selected 0
I want to parse this to get the number 5 (in this example, changing when selecting another track in bitwig) outputted if selected is 1. Not sure how to do that. What I have now is:
[netreceive...]
|
[oscparse]
|
[list trim]
|
[route track]
|
[print frombw]
frombw: 5 selected 1
frombw: 9 selected 0
Any idea?