Thread: String to Hex
View Single Post
Old 07-06-2022, 04:30 AM   #3
Fleeesch
Human being with feelings
 
Fleeesch's Avatar
 
Join Date: Apr 2011
Location: Germany
Posts: 177
Default

If I understand correctly, you're getting 0-127 in string format but the output format needs to be a number.

In this case try this:

Code:
match("%i",#input_value,output_value);
"%i" : output format, integer
#input : input string containing your OSC value
output_value : variable that gets to store the value for MIDI output
Fleeesch is offline   Reply With Quote