Firefox Tomorrow

web api instance method

MIDIPort: open() method

View on MDN ↗

Secure context

The open() method of the MIDIPort interface makes the MIDI device connected to this MIDIPort explicitly available.

If the port is successfully opened a new MIDIConnectionEvent is queued to the MIDIPort statechange and MIDIAccess statechange events, and the connection property is changed to "open".

If the port is already open when this method is called, then the promise will resolve successfully.

Syntax

open()

Parameters

None.

Return value

A Promise which resolves once access to the port has been successfully obtained.

Exceptions

  • NotAllowedError DOMException
    • : The promise is rejected with this error if the port is unavailable and cannot be opened.

Examples

The following example shows an output port being opened.

const output = midiAccess.outputs.get(portID);
output.open(); // opens the port

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.