forked from BLE-MIDI/WebMIDI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultitx.html
43 lines (36 loc) · 1.38 KB
/
multitx.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
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en" >
<!-- Invisible things... -->
<meta charset="UTF-8">
<title>BLE-MIDI Transmitter</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Roboto+Slab&display=swap" rel="stylesheet">
<head>
<!-- Stylesheet-->
<link rel="stylesheet" type="text/css" href="midistyle.css">
</head>
<body>
<div class="window">
<!-- Main Content-->
<h1>BLE MIDI Tx</h1>
<div class="briefer">
<p id="info" class="info">This webpage can connect to a BLE-MIDI device, and send MIDI messages from keys pressed on the keyboard below.</p>
<p id="hide" class="sidenote">Some older devices and browsers do not support neither MIDI nor Bluetooth.</p>
</div>
<!-- Console -->
<div class="console" id="iConsole">
<section id="midi-data">
<ul></ul>
</section>
</div>
<webaudio-slider id="master-volume" midicc="7.7"></webaudio-slider>
<div class="dynamicbtn" id="iconnect">
<button id="ibutton" class="connectbtn" onclick="txConnect()">Connect</button>
</div>
</div>
<!-- Javascript files-->
<script src='https://g200kg.github.io/webaudio-tinysynth/webaudio-tinysynth.js'></script>
<script src="https://g200kg.github.io/webaudio-controls/webaudio-controls.js"></script>
<script src="./common.js"></script>
<script src="./bletx.js"></script>
</body>
</html>