-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoboBuilderRobot.html
49 lines (41 loc) · 1.75 KB
/
RoboBuilderRobot.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
40
41
42
43
44
45
46
47
48
49
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Wiring</title>
<style type="text/css" media="screen">
table {
text-align: left;
width: 400px;
border-top: 2px solid black;
border-bottom: 2px solid black;
border-collapse:collapse;
border-spacing:0px;
}
th {
border-top: 2px solid black;
border-bottom: 2px solid black;
}
.pound {
width: 30px;
}
</style>
</head>
<body>
<h1>Wiring</h1>
<h2>CAN IDs</h2>
<table><tr>
<th class="pound">ID</th>
<th>Device</th></tr>
<tr><td>2</td><td>DriveTrain FrontLeftWheel</td></tr>
<tr><td>3</td><td>DriveTrain FrontRightWheel</td></tr>
<tr><td>4</td><td>DriveTrain BackLeftWheel</td></tr>
<tr><td>5</td><td>DriveTrain BackRightWheel</td></tr>
<tr><td>6</td><td>BallArm BallArmMotor</td></tr>
</table>
<h2>Analog Module 1</h2>
<table><tr>
<th class="pound">#</th>
<th>Sensor</th></tr>
<tr><td>1</td><td>BallArm BallArmPot Input </td></tr>
</table>
</body>
</html>