-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.html
39 lines (39 loc) · 1.12 KB
/
gui.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
38
39
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="js.js"></script>
</head>
<body>
<h2>Status</h2>
<div id="status"></div>
<h2>Control</h2>
<form id="theform" onsubmit="return handleForm()">
<div>
Latitude <input id="latitude" type="text" name="latitude" value="47">
</div>
<div>
Longitude <input id="longitude" type="text" name="longitude" value="8">
</div>
<div>
Satellite ID <input id="sat_id" type="text" name="sat_id" value="25544">
</div>
<input type="submit" value="submit">
</form>
<input type="button" value="calibrate" onclick="return calibrate()">
<input type="button" value="coast" onclick="return coast()">
<form id="driver_form" onsubmit="return handle_driver_form()">
<div>
Azimuth <input id="azimuth" type="text" name="azimuth" value="0">
</div>
<div>
Zenith <input id="altitude" type="text" name="altitude" value="0">
</div>
<input type="submit" value="submit">
</form>
<script>
run_status();
</script>
</body>
</html>