-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-guide.html
More file actions
106 lines (95 loc) · 4.21 KB
/
user-guide.html
File metadata and controls
106 lines (95 loc) · 4.21 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Page title -->
<title>User Guide</title>
<!-- Bootstrap core CSS: Material design -->
<link rel="stylesheet" href="vendor/material/css/material-icons.css">
<link rel="stylesheet" href="vendor/material/css/bootstrap-material-design.min.css">
<!-- Custom styles -->
<link rel="stylesheet" href="css/custom.css">
<!-- Custom JS scripts -->
<script type="text/javascript" src="js/custom.js"></script>
</head>
<body>
<!-- Content wrapper -->
<div id="wrapper" class="row">
<!-- Sidebar -->
<div id="sidebar-wrapper" class="bg-dark" w3-include-html="toc.html"></div>
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<h1>User Guide</h1><hr />
<h3>Overview</h3>
<h5>Sensors</h5>
<table class="table table-bordered">
<thead class="thead-light">
<tr>
<th width="20%">Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="user-guide_gps.html">GPS</a></td>
<td></td>
</tr>
<tr>
<td><a href="user-guide_ultrasonic.html">Ultrasonic proximity sensors</a></td>
<td></td>
</tr>
<tr>
<td>Infrared proximity sensor</td>
<td></td>
</tr>
<tr>
<td>Load cell</td>
<td></td>
</tr>
<tr>
<td>IMU</td>
<td></td>
</tr>
<tr>
<td><a href="user-guide_estop.html">Emergency stop (E-Stop)</a></td>
<td></td>
</tr>
<tr>
<td>Motor encoder & ODrive</td>
<td></td>
</tr>
</tbody>
</table>
<h5>Miscellaneous</h5>
<table class="table table-bordered">
<thead class="thead-light">
<tr>
<th width="20%">Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Treadmill</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div> <!-- /#page-content-wrapper -->
</div> <!-- /#wrapper -->
<!-- call includeHTML() -->
<script type="text/javascript">includeHTML();</script>
<!-- Bootstrap core JavaScript ================================================== -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="vendor/jquery/jquery.min.js"></script>
<script type="text/javascript" src="vendor/popper/popper.min.js"></script>
<!-- Bootstrap core JS: Material design -->
<script type="text/javascript" src="vendor/material/js/bootstrap-material-design.min.js"></script>
</body>
</html>