-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
37 lines (36 loc) · 1.64 KB
/
index2.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
<!DOCTYPE html>
<html>
<head>
<title>WebOscilloscope</title>
<script type="text/javascript" src="http://localhost:1234/socket.io/socket.io.js"></script>
<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>Frequency:</label><input type="text" id="frequency"/><br/>
<label>Host address (host:port):</label><input type="text" id="host"/><br/>
<button id="draw" onclick="StartDrawingWithNet()">
Draw!
</button>
<button id="stop" onclick="StopReceivingData()">
Stop
</button>
</div>
</div>
</body>
</html>