-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprogrammers-samples.html
213 lines (179 loc) · 6.09 KB
/
programmers-samples.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!doctype html>
<html lang="en">
<head>
<!-- Title -->
<title>Programmers – Sample Code</title>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Official MHS Robotics Website!" />
<meta name="keywords" content="MARS, Robotics, Marion, Highschool, FTC, First,
Tech, Challenge, Southern, Illinois, Ohm's, Olympians, Mechanical, Muses, Transistor, Titans, @MARS_Robotics" />
<meta name="authors" content="@UsernameError3" />
<meta name="copyright" content="MARS_Robotics" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="img/logos/logo_fav.png" />
<!-- CSS -->
<!--Requires Internet-->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/google-code-prettify/prettify.css">
<link rel="stylesheet" href="css/google-code-prettify/robotics-dark.css">
<link rel="stylesheet" href="css/main.css">
<!-- JS -->
<script src="js/nav.js"></script>
<script type="text/javascript" src="js/google-code-prettify/prettify.js"></script>
</head>
<body onload="PR.prettyPrint()">
<!-- Header / Menu Bar -->
<header class="header border-bottom-thin border-code-thin codeNav">
<a href="programmers.html" class="logo codeNav">PROGRAMMERS</a>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn">
<span class="navicon"></span>
</label>
<ul class="menu">
<li class="container codeNav">
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn codeNav">Teams</button>
<div id="myDropdown" class="dropdown-content">
<a href="titans.html">Titans</a>
<a href="olympians.html">Olympians</a>
<a href="muses.html">Muses</a>
<a href="programmers.html">Programmers</a>
</div>
</div>
</li>
<li>
<a href="#Top">Top</a>
</li>
<li>
<a href="#Hardware">Hardware</a>
</li>
<li>
<a href="#Looping">Looping</a>
</li>
<li>
<a href="#Logic">Logic</a>
</li>
</ul>
</header>
<!-- TOP (Start of Black Background)-->
<a name="Top"></a>
<div class="content-color">
<div class="content border-top-trim border-code-trim">
</br>
</br>
</br>
<h1 class="content-head is-center">PROGRAMMER SAMPLE CODE</h1>
<h3 class="content-subhead is-center">FTC TEAMS: 5187 - 11462 - 6206</h3>
<p class="l-box-pad is-center">
WINDOWS / LINUX: CTRL + F
</br>
MAC: CMD + F
</br>
Use these commands to quickly search the sample code page for keywords, ex: "public void init()"
</br>
</br>
*PAGE IS CURRENTLY UNDER-CONSTRUCTION*
</p>
</br>
</div>
<!-- SAMPLES (Start of GREY Ribbon)-->
<div class="ribbon3 border-top-trim border-code-trim">
<div class="green-text">
<div class="content is-center">
<a name="Hardware"></a>
<h1 class="content-head is-center green-text">HARDWARE CODE SAMPLES</h1>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-lg-1-1 center-align">
<!-- Code Samples -->
<div class="codebox-large center-align">
<h3 class="is-center">CODE SAMPLE</h3>
<pre class="prettyprint linenums">
code
</pre>
<p class="is-center">
Explanation Text.
</p>
</br>
</br>
</div>
<div class="codebox-large center-align">
<h3 class="is-center">CODE SAMPLE</h3>
<pre class="prettyprint linenums">
code
</pre>
<p class="is-center">
Explanation Text.
</p>
</br>
</br>
</div>
<div class="content is-center">
<a name="Looping"></a>
<h1 class="content-head is-center green-text">LOOPING CODE SAMPLES</h1>
</div>
<div class="codebox-large center-align">
<h3 class="is-center">CODE SAMPLE</h3>
<pre class="prettyprint linenums">
code
</pre>
<p class="is-center">
Explanation Text.
</p>
</br>
</br>
</div>
<div class="codebox-large center-align">
<h3 class="is-center">CODE SAMPLE</h3>
<pre class="prettyprint linenums">
code
</pre>
<p class="is-center">
Explanation Text.
</p>
</br>
</br>
</div>
<div class="content is-center">
<a name="Logic"></a>
<h1 class="content-head is-center green-text">LOGIC CODE SAMPLES</h1>
</div>
<div class="codebox-large center-align">
<h3 class="is-center">CODE SAMPLE</h3>
<pre class="prettyprint linenums">
code
</pre>
<p class="is-center">
Explanation Text.
</p>
</br>
</br>
</div>
<div class="codebox-large center-align">
<h3 class="is-center">CODE SAMPLE</h3>
<pre class="prettyprint linenums">
code
</pre>
<p class="is-center">
Explanation Text.
</p>
</br>
</br>
</div>
<!-- CLOSING TAGS -->
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="border-top-thin border-code-thin footer l-box is-center">
© 2018 MARS ROBOTICS
</div>
<!-- NOT A DUPLICATE! (Black Background Ends)-->
</div>
</body>
</html>