forked from frc1418/VictiScout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (112 loc) · 4.17 KB
/
index.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>VictiScout</title>
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="row">
<input type="number" id="team" placeholder="Team #" class="large">
<input type="number" id="match" placeholder="Match #" class="large keep">
<p>Color:</p>
<div class="selector keep" id="team-color">
<button id="red" class="color-selector"></button>
<button id="blue" class="color-selector"></button>
</div>
<button id="submit">Submit</button>
<button id="reset">Reset</button>
<button id="view">View Data</button>
</div>
<div class="row">
<h1>AUTO</h1>
<div>
<h2>Cones</h2>
<input type="number" class="balls" id="auto-top-cone" value="0" min="0">
<br>
<input type="number" class="balls" id="auto-middle-cone" value="0" min="0">
<br>
<input type="number" class="balls" id="auto-bottom-cone" value="0" min="0">
</div>
<div>
<p>← Top →</p>
<br>
<p>← Middle →</p>
<br>
<p>← Bottom →</p>
</div>
<div>
<h2>Cubes</h2>
<input type="number" class="balls" id="auto-top-cubes" value="0" min="0">
<br>
<input type="number" class="balls" id="auto-middle-cubes" value="0" min="0">
<br>
<input type="number" class="balls" id="auto-bottom-cubes" value="0" min="0">
</div>
<div>
<h2>Moved out of community</h2>
<input type="checkbox" id="init-movement">
</div>
<div>
<h2>Dock</h2>
<select id="auto-dock-points">
<option>none</option>
<option>D & not E</option>
<option>D & E</option>
</select>
</div>
</div>
<div class="row">
<h1>TELEOP</h1>
<div>
<h2>Cones</h2>
<input type="number" class="balls" id="teleop-top-cone" value="0" min="0">
<br>
<input type="number" class="balls" id="teleop-middle-cone" value="0" min="0">
<br>
<input type="number" class="balls" id="teleop-bottom-cone" value="0" min="0">
</div>
<div>
<p>← Top →</p>
<br>
<p>← Middle →</p>
<br>
<p>← Bottom →</p>
</div>
<div>
<h2>Cubes</h2>
<input type="number" class="balls" id="teleop-top-cubes" value="0" min="0">
<br>
<input type="number" class="balls" id="teleop-middle-cubes" value="0" min="0">
<br>
<input type="number" class="balls" id="teleop-bottom-cubes" value="0" min="0">
</div>
<div>
<h2>Number of Cycles</h2>
<input type="number" id="starting-balls" value="0" min="0">
</div>
<div>
<h2>Dock</h2>
<select id="teleop-dock-points">
<option>none</option>
<option>parked</option>
<option>D & not E</option>
<option>D & E</option>
</select>
</div>
</div>
<div class="row">
<textarea id="notes" placeholder=
"Write notes here!
The most helpful information you can note is insights about the team which can't be communicated through quantitative inputs.
Please refrain from making sweeping declarations about whether a team should be avoided, and from adding any useless information. It's also not necessary to note every event in the whole game: the standard numerical inputs can be used for that; we don't need extraneous duplicate information.
KEY TERMINOLOGY:
Parked: Robots whose bumper are compeltly contained within the community but does not meet the criteria for docked.
Docked and Not Engaged (D & not E): Contacting only the charge station
Docked and Engaged (D & E): Charge station is level
"></textarea>
</div>
<script src="js/script.js"></script>
</body>
</html>