-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test MIDI</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>WebMIDI - Test your input/output 🔌</h1>
<img src="./img/midi-setup.png" alt="MIDI system" width="400" >
<p>This app will scan and find all the MIDI input/output devices connected to your system.</p>
<p>
Then you can monitor your MIDI-controller. Note that some controllers may send more continuos data than the
browser can handle. Learn more about MIDI and system setup <a href="https://www.iconnectivity.com/blog/2019/5/10/an-introduction-to-midi-connections" target="_blank">here</a>.
</p>
--------------------------------------------------------
<h4>MIDI Inputs:</h4>
<pre id="inputs"></pre>
<h4>MIDI Outputs:</h4>
<pre id="outputs"></pre>
--------------------------------------------------------
<h4>Monitor MIDI Messages - Incoming: (latest first)</h4>
--------------------------------------------------------
<pre id="messages"></pre>
</div>
</body>
<script src="script.js"></script>
</html>