Limited availability
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The MIDIOutput
interface of the Web MIDI API provides methods to add messages to the queue of an output device, and to clear the queue of messages.
This interface doesn't implement any specific properties, but inherits properties from MIDIPort
.
This interface also inherits methods from MIDIPort
.
MIDIOutput.send()
Queues a message to be sent to the MIDI port.
MIDIOutput.clear()
Clears any pending send data from the queue.
The following example sends a middle C immediately on MIDI channel 1.
function sendMiddleC(midiAccess, portID) {
const noteOnMessage = [0x90, 60, 0x7f]; // note on, middle C, full velocity
const output = midiAccess.outputs.get(portID);
output.send(noteOnMessage); // sends the message.
}
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4