{
const out = html`<pre>Play a MIDI device to see its messages here</pre>`;
const key_statuses = await MIDI_attach(
console.log,
m => out.innerText = `Message: ${JSON.stringify(m, null, " ")}\nStatuses: ${JSON.stringify(key_statuses, null, " ")}`,
);
return out;
}