Skip to content

Commit 5bbdbbb

Browse files
authored
wider
1 parent f46c9a1 commit 5bbdbbb

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

docs/_layouts/on-this-page.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,15 @@
7575
.main {
7676
max-width: 65rem;
7777
}
78+
@media (min-width: 90rem) {
79+
.side-bar {
80+
width:calc((100% - 90rem) / 2 + 16.5rem);
81+
min-width: 16.5rem
82+
}
83+
}
84+
@media (min-width: 90rem) {
85+
.side-bar+.main {
86+
margin-left: Max(16.5rem, calc((100% - 90rem) / 2 + 16.5rem));
87+
}
88+
}
7889
</style>

docs/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,21 @@ With quadratic damping + back-EMF braking:
5454

5555
It was worth creating our own path follower because it gave us our five specimen autnomous and led us to add a quadratic-damping term to our translational PID. This made the system nearly five times faster at decelerating. We never would have discovered this approach without building our own follower from scratch with all the eariler prototype and iterations. Seeing the braking power of zero power brake mode in eariler interations inspired us to create a follower that took advantage of that braking speed.
5656

57+
## What We Learned
58+
- Java, the programming language
59+
- Mathematics
60+
- Vectors, dot products, and linear algebra
61+
- Kinematics equations
62+
- Calculus concepts of Derivative and Integral in the context of PIDs
63+
- Clean code practices, including builders, factories, and abstraction, depency injection
64+
- PIDs and PIDFs controllers
65+
- Along with more empirical implementations such as predicting stopping distance
66+
- How motors actually work
67+
- Back-EMF braking
68+
- Documentation
69+
- How to build and maintain a documentation website
70+
- Collaboration and teamwork
71+
5772
## Credits
5873

5974
All code developed by **Jacob Ophoven** with help of **Coach Andy** and members of the FTC community.

0 commit comments

Comments
 (0)