hi all,
I'd like your suggestion/opinion in a specific technique regarding the active sensing. Each 'Active sense' message is sent at least once every 300 ms.
in order to use the 'active sense' message to my system, I've done the following:
if(a MIDI msg is sent) { send the message }else (if nothing is sent) { send 'ctive sense' }
However, by doing this, the active sense is sent almost 'continuously' to the receiving device (and not once every 300ms).
Then I've tried to use the delay function :
}else (if nothing is sent) { send 'ctive sense' delay(300); }
but this does not work, as the delay occurs to the whole system... Is there any specific technique where i can send a 'active sense' message every 300ms without introduce any significant delay?
thanks, warp