blob: 273f3b8a2991bd6772618935f3b95aa02756e5cd (
plain)
| 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
 | 
<html>
<body>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="waveViz.js"></script>
<div id="canvasDiv">
    <canvas id="canvas"></canvas>
</div>
<label>minPulseLength (0-4096)</label>
<input id="minPulseLength">
<label>maxPulseLength (0-4096)</label>
<input type="text" id="maxPulseLength">
<br/>
<label>waitFloor (0-2, should be less than waitCeiling</label>
<input id="waitFloor">
<label>waitCeiling (0-2, should be more than waitFloor)</label>
<input id="waitCeiling">
</body>
</html>
 |