4 <title>Stable MIDI port id test
</title>
5 <meta http-equiv=
"Content-Type" content=
"text/html;charset=utf-8"></meta>
9 async
function get_first_input_id() {
10 let access
= await navigator
.requestMIDIAccess({ sysex
: false });
11 const inputs
= access
.inputs
.values();
12 const input
= inputs
.next();
13 return input
.value
.id
;