-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (108 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content=
"The subdomain of the Spartatroniks Software Team">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Software Team - FRC Team 3512</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="shortcut icon" type="image/ico" href="favicon.ico">
</head>
<body>
<header id="navbar">
<ul>
<li>
<a href="/" class="active">Home</a>
</li>
<li>
<a href="admin/">Admin</a>
</li>
<li>
<a href="bootstrap/">Developer Bootstrap</a>
</li>
<li>
<a href="vpn/">VPN Setup</a>
</li>
<li>
<a href="ci/">Curriculum</a>
</li>
<li>
<a href="fll/">FLL</a>
</li>
<li>
<a href="archives/">Archives</a>
</li>
</ul>
</header>
<div class="body">
<h1>FRC 3512 Software Team</h1>
<p>We are the software subteam of <a href=
"https://www.spartatroniks.com/">FRC Team 3512</a> located in Orcutt,
California. We teach high school students practical software and controls
engineering skills through <a href=
"https://www.firstinspires.org/">competitive robotics</a>.</p>
<p>This website is a collection of student and mentor knowledge and a
teaching aid.</p>
<h2 id="Our_vision">Our vision</h2>
<p>Produce competent software engineers who:</p>
<ol>
<li>Understand the tradeoff between maintainability and performance.</li>
<li>Can recognize when a given programming language or feature is the
right fit for a problem.</li>
</ol>
<h2 id="What_students_will_learn">What students will learn</h2>
<p>The software subteam programs the robot to make it move and automate
parts of its functionality. Our goal is to expose you to the software
engineering process in a low-risk, collaborative learning environment so
that if you eventually move on to computer science in college or in
industry, you'll have all the tools you need to succeed.</p>
<p>You will learn the following throughout your tenure as a software
subteam member:</p>
<ol>
<li>The mindset software engineers use to break down and solve problems
(how to think like a programmer).
<ul>
<li>What tools programming languages offer, and when/how to apply
them solve problems in a manner that is effective, efficient, and
promotes the long-term maintainability of the software project.</li>
</ul>
</li>
<li>The tools and methodologies software engineers use to collaborate
with each other and manage the complexity of a software project.</li>
<li>Software engineering principles for real-time and embedded
systems.</li>
<li>Control theory, which lets us do two things:
<ul>
<li>Model our robots mathematically so we can test our software's
correctness before the hardware is completed.</li>
<li>Design and test controllers for those models that ensure actions
like "move the elevator to this position" will work with minimal
trial-and-error on the real hardware.</li>
</ul>
</li>
<li>How to write automated tests that ensure our software continues to
work as we add features and perform cleanups.</li>
</ol>
<h2 id="Administration"><a href="admin/">Administration</a></h2>
<p>Describes the software team's goals, its organization, and how it's
run.</p>
<h2 id="Developer_bootstrap"><a href="bootstrap/">Developer
bootstrap</a></h2>
<p>Provides the necessary tools to begin programming in C++.</p>
<h2 id="VPN_setup"><a href="vpn/">VPN setup</a></h2>
<p>Instructions for connecting to our robot VPN.</p>
<h2 id="Curriculum_and_instruction"><a href="ci/">Curriculum and
instruction</a></h2>
<p>Contains the software team teaching materials.</p>
<h2 id="GitHub"><a href="https://github.com/frc3512/">GitHub</a></h2>
<p>The software team's GitHub organization, which contains mirrors of our
Git repositories.</p>
<h2 id="FLL"><a href="fll/">FLL</a></h2>
<p>FLL-related stuff the software team deals with on an annual basis.</p>
<h2 id="Archives"><a href="archives/">Archives</a></h2>
<p>Contains legacy projects and resources from throughout the team's
history.</p>
</div>
</body>
</html>