-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.56 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
33
34
<!DOCTYPE html>
<html>
<head>
<title>WebOscilloscope</title>
<script type="text/javascript" src="./phonegap-1.3.0.js"></script>
<script type="text/javascript" src="./js/atom-full-compiled.js"></script>
<script type="text/javascript" src="./js/libcanvas-full-compiled.js"></script>
<script type="text/javascript" src="./js/VisualizeManager.js"></script>
<script type="text/javascript" src="./js/Visualizer.js"></script>
<script type="text/javascript" src="./js/DataStream.js"></script>
<script type="text/javascript" src="./js/DataTransform.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
</head>
<body style="background-color: #333333">
<div id="view">
<div id="plot">
<canvas id="data" width="800" height="600"
style="position: absolute; left: 0; top: 0; z-index: 2;"></canvas>
<canvas id="grid" width="800" height="600"
style="position: absolute; left: 0; top: 0; z-index: 1;"></canvas>
</div>
<div id="settings" style="position: absolute; left: 20px; top: 0px; color:#FFFFFF">
<label>Sweep:</label><input type="text" id="sweep"/><br/>
<label>Number of points in single frame:</label><input type="text" id="numberOfPoints"/><br/>
<label>Max value in data stream:</label><input type="text" id="maxValue"/><br/>
<label>Number of frames:</label><input type="text" id="numberOfFrames"/><br/>
<button id="draw" onclick="StartDrawing()">
Draw!
</button>
</div>
</div>
</body>
</html>