-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathspectrum.html
More file actions
32 lines (26 loc) · 829 Bytes
/
spectrum.html
File metadata and controls
32 lines (26 loc) · 829 Bytes
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
<html>
<head>
<title>Radio Spectrum Display</title>
<link rel="stylesheet" href="common.css">
<script src="rtlcom.js"></script>
<script src="r820t.js"></script>
<script src="rtl2832u.js"></script>
<script src="radiocontroller.js"></script>
<script src="js/three.min.js"></script>
<script src="js/TrackballControls.js"></script>
<script src="js/Detector.js"></script>
<script src="js/stats.min.js"></script>
<script src="Lut.js"></script>
<script src="jsfft/lib/complex_array.js"></script>
<script src="jsfft/lib/fft.js"></script>
</head>
<body>
<div id="buttons">
<input type="button" id="startButton" value="Start">
<input type="button" id="stopButton" value="Stop">
<input type="text" id="frequencyField">
</div>
<div id="container"></div>
<script type="text/javascript" src="spectrum.js"></script>
</body>
</html>