Midi Status
Is ready: {{ midi.isReady }}
Is error: {{ midi.isError }} {{ midi.error|default:'' }}
Select a midi device below:
(Make sure you select "Allow" when the browser prompts for
permissions, and then try plugging in a USB midi keyboard.)
{% if midi.isReady %}
{% for input in midi.inputs %}
{{ input.name }}
{% endfor %}
{% endif %}
{% if midi.lastInputChannel %}
{% for key in midikeyboard.keys %}
{{ key.letter }}
{% if midi.lastInputChannel %}
{% if midi.lastInputChannel.notesState|get:key.i %}
•
{% endif %}
{% endif %}
{% endfor %}
{% endif %}