Hello,
I’m trying to make a patch with a dynamic number of inputs, that processes the data and send it to a mubu container. I’m creating the message this way :
function bang(){
var s = ""
for(var i = 0; i < values.length; i++){
s += "" + values[i] + " ";
}
outlet(1,s);
}
The outlet is connected to this message : (track inputs append $1). When i do a print of this message, i get something like this : “track inputs append 76 54 23 45 103”. But when i look in my iMubu matrix, it’s full of 0. What am i doing wrong ?