-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
TODO | ||
A version control program designed for code. It allows multiple programmers to collaborate on a single codebase, and for independent changes to be merged together into a single history. | ||
|
||
TEST CONTENT | ||
Git and GitHub are different. Git is the program that runs on your computer to manage versions of your code and allow you to view older changes. GitHub is an online service that hosts Git repositories, allowing multiple developers to sync their changes with each other. | ||
|
||
You can update these files locally, and they automatically save. | ||
|
||
We recommend installing the Git plugin for Obsidian, which you can install from Obsidian's settings. (TODO: more detailed) | ||
All of our team's code, and this knowledge base, can be found on [our GitHub page](https://github.com/frc-2175). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
TODO | ||
Pneumatic mechanisms are those powered by compressed air. FRC robots can use pneumatics to perform a variety of tasks. | ||
|
||
The pneumatics subsystem on an FRC robot consists of the following: | ||
|
||
- A [[Compressor]] | ||
- Air tanks for storage | ||
- A [[Pressure Regulator]] to restrict the pressure used to operate mechanisms | ||
- [[Air Cylinder|Air cylinders]] to operate mechanisms | ||
- [[Solenoid|Solenoids]] to control the air cylinders | ||
- A [[Pressure Switch]] to shut off the [[Compressor]] when the maximum pressure is reached | ||
- The [[PCM (Pneumatics Control Module)]], which operates the [[Compressor]] and [[Solenoid|Solenoids]] | ||
|
||
FRC robots can store compressed air at up to 120 psi, and can operate mechanisms at up to 60 psi. A [[Pressure Regulator]] converts the 120 psi _stored pressure_ to the 60 psi _working pressure_. | ||
|
||
Full details about the safe construction of the pneumatics subsystem can be found in the [[Game Manual]]. |