MIDIConnectionEvent: port プロパティ

安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。

MIDIConnectionEvent インターフェイスの読み取り専用プロパティ port は、切断または接続されたポートを返します。

MIDIPort オブジェクトです。

Navigator.requestMIDIAccess() メソッドは、MIDIAccess オブジェクトで解決する Promise を返します。ポートの状態が変わると、MIDIConnectionEventstatechange イベントに渡されます。これにより、ポートの情報をコンソールに出力できます。

js
navigator.requestMIDIAccess().then((access) => {
  access.onstatechange = (event) => {
    console.log(event.port.name, event.port.manufacturer, event.port.state);
  };
});

仕様書

Specification
Web MIDI API
# dom-midiconnectionevent-port

ブラウザーの互換性

BCD tables only load in the browser