-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
34 lines (31 loc) · 995 Bytes
/
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
33
34
<!--
~ Copyright 2022, Tony Atkins
~ Copyright 2011-2020, Colin Clark
~
~ Licensed under the MIT license, see LICENSE for details.
-->
<!DOCTYPE html>
<html>
<head>
<title>"Youme" Demos.</title>
<link type="text/css" rel="stylesheet" href="../src/css/youme.css"/>
</head>
<body>
<h3>"Youme" Demos</h3>
<p>The pages below demonstrate various components provided by this package.</p>
<ul>
<li>
<a href="./passthrough.html">"Passthrough": Relay messages from a single input to a single output.</a>
</li>
<li>
<a href="./multi-passthrough.html">"Multi-Passthrough": Relay messages from one or more inputs to one or more outputs.</a>
</li>
<li>
<a href="./message-monitor.html">"Message Monitor": Display MIDI messages received from one or more inputs.</a>
</li>
<li>
<a href="./midi-console.html">"MIDI Console": Convert MIDI messages between hex and JSON, send them to an output.</a>
</li>
</ul>
</body>
</html>