djipco / webmidi

Tame the Web MIDI API. Send and receive MIDI messages with ease. Control instruments with user-friendly functions (playNote, sendPitchBend, etc.). React to MIDI input with simple event listeners (noteon, pitchbend, controlchange, etc.).
Apache License 2.0
1.54k stars 115 forks source link

time parameter doesn't send outputs #38

Closed deemeetree closed 6 years ago

deemeetree commented 6 years ago

works:

output.playNote("C2", 1, {time: WebMidi.time});

doesn't work:

output.playNote("C2", 1, {time: WebMidi.time + 1000});

how to play several notes one after another? right now only the first one plays.

djipco commented 6 years ago

Please see this issue for more information.