-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfll-script-ms.html
More file actions
584 lines (467 loc) Β· 18 KB
/
fll-script-ms.html
File metadata and controls
584 lines (467 loc) Β· 18 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
---
layout: null
permalink: /fll-script-ms/
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLL Judging Presentation Script - Individual Parts (MS Team)</title>
<style>
@media print {
.no-print { display: none !important; }
.person-section { page-break-before: always; }
.person-section:first-of-type { page-break-before: avoid; }
body { font-size: 12pt; }
}
@media screen {
body { max-width: 800px; margin: 0 auto; }
}
body {
font-family: Georgia, 'Times New Roman', serif;
line-height: 1.6;
padding: 1rem;
color: #222;
}
h1 { text-align: center; margin-bottom: 0.25em; }
.subtitle { text-align: center; color: #666; margin-bottom: 1.5rem; }
.person-section {
border: 2px solid #333;
padding: 1rem;
margin-bottom: 1.5rem;
border-radius: 8px;
}
.person-section h2 {
margin-top: 0;
border-bottom: 2px solid #333;
padding-bottom: 0.3em;
font-size: 1.5em;
}
.script-part {
margin-bottom: 0.75rem;
padding: 0.5rem 0.75rem;
border-left: 4px solid #2196F3;
background: #f8f9fa;
}
.script-part h3 {
margin: 0 0 0.3em 0;
font-size: 1em;
color: #1565C0;
}
.script-part p, .script-part ul {
margin: 0.3em 0;
}
.context {
color: #888;
font-style: italic;
font-size: 0.9em;
padding: 0.4rem 0.75rem;
border-left: 4px solid #ccc;
margin-bottom: 0.5rem;
}
.context strong { color: #555; }
.nav-buttons { text-align: center; margin-bottom: 1.5rem; }
.nav-buttons button {
padding: 0.5rem 1rem;
margin: 0.25rem;
border: 1px solid #2196F3;
background: #fff;
color: #2196F3;
border-radius: 4px;
cursor: pointer;
font-size: 1em;
}
.nav-buttons button:hover { background: #2196F3; color: #fff; }
.print-btn {
padding: 0.75rem 2rem;
background: #2196F3;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1em;
margin: 0.5rem;
}
.print-btn:hover { background: #1976D2; }
</style>
</head>
<body>
<h1 class="no-print">FLL Judging Presentation Script</h1>
<p class="subtitle no-print">Individual parts for each team member</p>
<div class="nav-buttons no-print">
<button onclick="document.getElementById('joseph').scrollIntoView({behavior:'smooth'})">Joseph</button>
<button onclick="document.getElementById('weston').scrollIntoView({behavior:'smooth'})">Weston</button>
<button onclick="document.getElementById('payton').scrollIntoView({behavior:'smooth'})">Payton</button>
<button onclick="document.getElementById('diego').scrollIntoView({behavior:'smooth'})">Diego</button>
<button onclick="document.getElementById('jehu').scrollIntoView({behavior:'smooth'})">Jehu</button>
<button onclick="document.getElementById('brian').scrollIntoView({behavior:'smooth'})">Brian</button>
<button onclick="document.getElementById('caleb').scrollIntoView({behavior:'smooth'})">Caleb</button>
<button onclick="document.getElementById('alex').scrollIntoView({behavior:'smooth'})">Alex</button>
<br>
<button class="print-btn" onclick="window.print()">π¨οΈ Print All</button>
</div>
<!-- ============ JOSEPH ============ -->
<div class="person-section" id="joseph">
<h2>π€ Joseph's Parts</h2>
<div class="script-part">
<h3>π Intro (Opening)</h3>
</div>
<div class="context">
<strong>After you:</strong> Weston β Project Plan
</div>
<div class="context">
<strong>Before you:</strong> Weston β Identifying a Problem
</div>
<div class="script-part">
<h3>π Initial Idea</h3>
</div>
<div class="context">
<strong>After you:</strong> Jehu β Solution Development
</div>
<div class="context">
<strong>Before you:</strong> Caleb β Discovering Freeze Drying
</div>
<div class="script-part">
<h3>π Initial Idea (continued)</h3>
</div>
<div class="context">
<strong>After you:</strong> Brian β Expert Feedback
</div>
<div class="context">
<strong>Before you:</strong> Weston β First Attempt and Working Formula
</div>
<div class="script-part">
<h3>π Attempt #2</h3>
<p>We collected feedback from classmates and staff members.</p>
<p>We decided to add more lime to combat the flavor and more sugar, being careful not to surpass the sugar content of our competitors.</p>
<p>Our results were much better. We added lime to all the flavors and realized it would be better served cold.</p>
</div>
<div class="context">
<strong>After you:</strong> Jehu β Working on Nutrition Facts
</div>
<div class="context">
<strong>Before you:</strong> Jehu β Working on Nutrition Facts
</div>
<div class="script-part">
<h3>π Mineral Content</h3>
<p>Our CocoPlus has much higher mineral content than our competitors.</p>
</div>
<div class="script-part">
<h3>π Electrolyte Replenishment</h3>
</div>
<div class="context">
<strong>After you:</strong> Weston β Sugar Comparison
</div>
<div class="context">
<strong>Before you:</strong> Brian β More Sharing: Website and CocoPlus Ad Video
</div>
<div class="script-part">
<h3>π Conclusion & Final Product</h3>
</div>
</div>
<!-- ============ WESTON ============ -->
<div class="person-section" id="weston">
<h2>π€ Weston's Parts</h2>
<div class="context">
<strong>Before you:</strong> Joseph β Intro
</div>
<div class="script-part">
<h3>π Project Plan</h3>
<p>Our project plan was based on the judging rubrics. We did research to find a problem and solution, and talked to experts to improve our solution.</p>
</div>
<div class="context">
<strong>After you:</strong> Payton β Initial Research and Discovery
</div>
<div class="context">
<strong>Before you:</strong> Jehu β Brainstorming
</div>
<div class="script-part">
<h3>π Identifying a Problem</h3>
<p>Through research and brainstorming we chose to try to solve the issue of dehydration, which can be a problem for Archaeologists both in scorching hot and Arctic temperatures.</p>
<p>An effective solution could allow archaeologists to spend more time on digs.</p>
</div>
<div class="context">
<strong>After you:</strong> Joseph β Initial Idea
</div>
<div class="context">
<strong>Before you:</strong> Brian β Expert Feedback
</div>
<div class="script-part">
<h3>π First Attempt and Working Formula</h3>
<p>We found a company that provides freeze dried powders for various fruitsβ coconut for hydration, seaweed for calcium, and watermelon and strawberries for color and flavor.</p>
<p>Our first test contained 1 tablespoon of each of the fruit powders and of real cane sugar.</p>
<p>It tasted way too salty.</p>
</div>
<div class="context">
<strong>After you:</strong> Joseph β Attempt #2
</div>
<div class="context">
<strong>Before you:</strong> Joseph β Electrolyte Replenishment
</div>
<div class="script-part">
<h3>π Sugar Comparison</h3>
</div>
<div class="context">
<strong>After you:</strong> Payton β Clean & Natural
</div>
</div>
<!-- ============ PAYTON ============ -->
<div class="person-section" id="payton">
<h2>π€ Payton's Parts</h2>
<div class="context">
<strong>Before you:</strong> Weston β Project Plan
</div>
<div class="script-part">
<h3>π Initial Research and Discovery</h3>
<p>We kept track of our research and our ideas on GitHub.</p>
</div>
<div class="context">
<strong>After you:</strong> Diego β Meeting with Pastor Raduly
</div>
<div class="context">
<strong>Before you:</strong> Weston β Sugar Comparison
</div>
<div class="script-part">
<h3>π Clean & Natural</h3>
</div>
<div class="context">
<strong>After you:</strong> Brian β Sharing our Solution
</div>
<div class="context">
<strong>Before you:</strong> Caleb β Intro (Robot Design)
</div>
<div class="script-part">
<h3>π Robot Bases</h3>
<p>We made four different robots and we tested them to see which was the best.</p>
</div>
<div class="script-part">
<h3>π Testing Results</h3>
<p>We tested them by having them drive from one side of the robot table to the other and then back, and we measured how far off of the starting position they ended up. These are the results of our testing.</p>
</div>
<div class="context">
<strong>After you:</strong> Jehu β Building Resources
</div>
<div class="context">
<strong>Before you:</strong> Alex β What's on Sale? / Tip the Scales
</div>
<div class="script-part">
<h3>π Surface Brushing, Map Reveal, Mineshaft</h3>
<p>At our previous tournament we had 3 different attachments for these three missions. So we decided to put them all together so we could complete them in one run and save us more time.</p>
<p>This bar knocks the brush as we're driving by to score points on Surface Brushing. This mechanism raises up to send the minecart to the other table. Then we lower it and drive straight into the map reveal mission. That mission has three parts. This part pushes the red post for one part, this part pushes another section back, and this one-way-door grabs the last section, so we score all 30 points from the mission.</p>
<p>I had to work really hard on this and do lots of repeated testing but now it's pretty reliable and scores 80 points in one run.</p>
</div>
<div class="script-part">
<h3>π Statue Rebuild and Angler Artifacts (with Caleb)</h3>
</div>
<div class="context">
<strong>After you:</strong> Alex β Who Worked on What?
</div>
</div>
<!-- ============ DIEGO ============ -->
<div class="person-section" id="diego">
<h2>π€ Diego's Parts</h2>
<div class="context">
<strong>Before you:</strong> Payton β Initial Research and Discovery
</div>
<div class="script-part">
<h3>π Meeting with Pastor Raduly</h3>
<p>We talked to Pastor Andrew Raduly who has experience in Egyptian Archaeology. He told us what problems archaeologists face.</p>
</div>
<div class="context">
<strong>After you:</strong> Jehu β Brainstorming
</div>
<div class="context">
<strong>Before you:</strong> Caleb β Robot Game Strategy
</div>
<div class="script-part">
<h3>π Forge, Who Lived Here, and Heavy Lifting</h3>
<p>We start off with two very simple passive attachments. This one has a bar that comes out from the side of the robot so it can score the Forge and Who Lived Here? missions just by driving by them. This attachment has a bar at the front and we drive off the mat, behind the mission models, and knock the millstone off its base.</p>
<p>These attachments alone score us 90 points reliably.</p>
</div>
<div class="context">
<strong>After you:</strong> Brian β Silo
</div>
</div>
<!-- ============ JEHU ============ -->
<div class="person-section" id="jehu">
<h2>π€ Jehu's Parts</h2>
<div class="context">
<strong>Before you:</strong> Diego β Meeting with Pastor Raduly
</div>
<div class="script-part">
<h3>π Brainstorming</h3>
<p>We brainstormed what archaeologists do, what problems they have, and what solutions could be for those problems.</p>
</div>
<div class="context">
<strong>After you:</strong> Weston β Identifying a Problem
</div>
<div class="context">
<strong>Before you:</strong> Joseph β Initial Idea
</div>
<div class="script-part">
<h3>π Solution Development</h3>
<p>Since Sodium, Potassium, and Magnesium were all essential to hydration, we wanted something healthier for Archaeologists. We decided to use Gatorade, Gatorlyte, and PerformX as good comparisons to the product we wanted to engineer.</p>
</div>
<div class="context">
<strong>After you:</strong> Brian β Conservatives and Dyes
</div>
<div class="context">
<strong>Before you:</strong> Joseph β Attempt #2
</div>
<div class="script-part">
<h3>π Working on Nutrition Facts</h3>
<p>We created our nutrition facts sheet. Now it was time to compare our product with competitors.</p>
</div>
<div class="context">
<strong>After you:</strong> Joseph β Mineral Content
</div>
<div class="context">
<strong>Before you:</strong> Payton β Testing Results
</div>
<div class="script-part">
<h3>π Building Resources</h3>
<p>Here are some building resources we used. We got the robot base designs we tested from the Spike Prime software, a website called FLL Tutorials, and from our coach.</p>
<p>We also learned how to make a one-way door from this YouTube video and used the design in our attachments.</p>
</div>
<div class="context">
<strong>After you:</strong> Caleb β Coding Resources
</div>
<div class="context">
<strong>Before you:</strong> Alex β What's on Sale? / Tip the Scales
</div>
<div class="script-part">
<h3>π Salvage Operation</h3>
</div>
<div class="context">
<strong>After you:</strong> Payton β Surface Brushing, Map Reveal, Mineshaft
</div>
</div>
<!-- ============ BRIAN ============ -->
<div class="person-section" id="brian">
<h2>π€ Brian's Parts</h2>
<div class="context">
<strong>Before you:</strong> Jehu β Solution Development
</div>
<div class="script-part">
<h3>π Conservatives and Dyes</h3>
<p>Coconut water has all the nutrients for hydration. We wanted to turn it into a powder that would conserve the nutrients and avoid color additives.</p>
</div>
<div class="context">
<strong>After you:</strong> Caleb β Discovering Freeze Drying
</div>
<div class="context">
<strong>Before you:</strong> Joseph β Initial Idea (continued)
</div>
<div class="script-part">
<h3>π Expert Feedback</h3>
<p>We consulted a Doctor named Dr. Dennis Imperio, who is a General Physician and active runner. He enjoyed our idea and asked to try it in the future.</p>
<p>He told us how we could do some simple tests to check hydration, such as checking knuckles for skin elasticity and yes a pee color test.</p>
<p>These tests showed us that our product did help hydrate us!</p>
</div>
<div class="context">
<strong>After you:</strong> Weston β First Attempt and Working Formula
</div>
<div class="context">
<strong>Before you:</strong> Payton β Clean & Natural
</div>
<div class="script-part">
<h3>π Sharing our Solution</h3>
<p>We gave short robotics presentations at 3 different churches. We also had a robotics night at our school where we shared our CocoPlus presentation and shared samples. Everyone seemed to like it and most said they'd be interested in buying it.</p>
</div>
<div class="script-part">
<h3>π More Sharing: Website and CocoPlus Ad Video (with Jehu)</h3>
<p>We put information about our project on our website, and also created a fun advertisement video which is on YouTube.</p>
</div>
<div class="context">
<strong>After you:</strong> Joseph β Conclusion & Final Product
</div>
<div class="context">
<strong>Before you:</strong> Diego β Forge, Who Lived Here, and Heavy Lifting
</div>
<div class="script-part">
<h3>π Silo</h3>
<p>Next, we complete the silo. This attachment is still pretty simple, but it is an active attachment so we can hit the silo lever multiple times to release the gears inside it. Originally we were using a smaller wheel as a weight on the end of the arm, but we found that the larger wheel makes it a lot more reliable since it doesn't matter as much what exact position the robot is in. The larger wheel also tends to deflect the gears as they come out of the silo, which means they probably won't end up in the middle of the field and mess up any of our later runs.</p>
</div>
<div class="context">
<strong>After you:</strong> Caleb β Silo Code
</div>
</div>
<!-- ============ CALEB ============ -->
<div class="person-section" id="caleb">
<h2>π€ Caleb's Parts</h2>
<div class="context">
<strong>Before you:</strong> Brian β Conservatives and Dyes
</div>
<div class="script-part">
<h3>π Discovering Freeze Drying</h3>
<p>This brought us to freeze drying, which can effectively conserve 95% of the nutrients in coconut water. We also wanted to add flavors such as watermelon, strawberry, and lime.</p>
<p>We understood that fruits already have natural sugars, so we wanted to be careful about how much sugar we added.</p>
</div>
<div class="context">
<strong>After you:</strong> Joseph β Initial Idea (continued)
</div>
<div class="context">
<strong>Before you:</strong> Joseph β Conclusion & Final Product
</div>
<div class="script-part">
<h3>π Intro (Robot Design)</h3>
</div>
<div class="context">
<strong>After you:</strong> Payton β Robot Bases
</div>
<div class="context">
<strong>Before you:</strong> Jehu β Building Resources
</div>
<div class="script-part">
<h3>π Coding Resources</h3>
</div>
<div class="script-part">
<h3>π Robot Game Strategy</h3>
</div>
<div class="context">
<strong>After you:</strong> Diego β Forge, Who Lived Here, and Heavy Lifting
</div>
<div class="context">
<strong>Before you:</strong> Brian β Silo
</div>
<div class="script-part">
<h3>π Silo Code</h3>
<p>Gyro, move forward, hit lever 4 times (using a loop), back up into home.</p>
</div>
<div class="context">
<strong>After you:</strong> Alex β What's on Sale? / Tip the Scales
</div>
<div class="context">
<strong>Before you:</strong> Payton β Surface Brushing, Map Reveal, Mineshaft
</div>
<div class="script-part">
<h3>π Statue Rebuild and Angler Artifacts (with Payton)</h3>
</div>
<div class="context">
<strong>After you:</strong> Alex β Who Worked on What?
</div>
</div>
<!-- ============ ALEX ============ -->
<div class="person-section" id="alex">
<h2>π€ Alex's Parts</h2>
<div class="context">
<strong>Before you:</strong> Caleb β Silo Code
</div>
<div class="script-part">
<h3>π What's on Sale? / Tip the Scales</h3>
<p>This attachment knocks the lever to the side to raise the market wares, then we drive forward and this bar tips the scale. This is a one way door so it passes over the market stall and then when we back up it pulls it up to score points. Then we turn and cross to the other side of the board.</p>
</div>
<div class="context">
<strong>After you:</strong> Jehu β Salvage Operation
</div>
<div class="context">
<strong>Before you:</strong> Payton / Caleb β Statue Rebuild and Angler Artifacts
</div>
<div class="script-part">
<h3>π Who Worked on What?</h3>
<p>These are the different people that worked on building and coding for all of our different attachments and runs.</p>
</div>
</div>
</body>
</html>