i'm sure we guessed this anyway, but the limit on how close the ON and OFF messages can be so that the invert action gets triggered (or rather so the non-inverted one isn't ignored) is still 3ms
just used this little config to test:
Code:
open_midi_device("lpd8", "lpd8", "LPD8", "LPD8")
open_midi_device("loopbe", "generic", "", "LoopBe Internal MIDI")
capture("lpd8", "3,3", NOFF, 0, function(d,e,v,p)
send("loopbe", "CC004", ON)
msleep(3)
send("loopbe", "CC004", OFF)
end)
it's a neat solution tho - using the inverted option for the second event... it does make some stuff possible that wouldn't be without middleware software - the user just needs to be quick with his fingers on releasing
Bookmarks