-
Notifications
You must be signed in to change notification settings - Fork 0
/
window.html
30 lines (28 loc) · 981 Bytes
/
window.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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href="css/styles.css" media="screen" />
</head>
<body>
<div id="container">
<div id="control-panel">
<ul id="device-list"></ul>
<button id="connected-button">Connect</button><br>
<table>
<tr>
<td>Signal frequency (Hz):</td>
<td><input id="freq-input" type="text" name="freq" value=100></td>
</tr>
<tr>
<td>X-axis limit:</td>
<td><input id="xlim-input" type="text" name="xlimit" value=10></td>
</tr>
</table>
</div>
<div id="graph1"></div>
</div>
<script src="bower_components/d3/d3.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="js/serial_read.js"></script>
<script src="js/controller.js"></script>
</body>