Skip to content

Commit 8a52df4

Browse files
committed
removed references to OI.java
1 parent c28510d commit 8a52df4

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

docs/basics/wpilib.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -106,21 +106,15 @@ Making FRC Programming Easy
106106

107107
- In FRC programming our main class is **Robot.java** and all other classes (command files and subsystem files) must be loaded from **Robot.java** either directly or indirectly
108108
- !!! Example
109-
**Robot.java** loads **OI.java**, **OI.java** loads **DriveForward.java**.
110-
- All **subsystem** files must be added to **Robot.java**’s auto-created `#!java robotInit()` method.
111-
- This loads our **subsystems** into the code and allow its public methods to be useable by other files such as commands later by typing `#!java Robot.nameOfSubsystem.desiredMethod();`
109+
**Robot.java** loads **RobotContainer.java**, **RobotContainer.java** loads **DriveForward.java**.
110+
- All **subsystem** files must be added to **RobotContainer.java**.
111+
- This loads our **subsystems** into the code and allow its public methods to be useable by other files such as commands later by typing `#!java RobotContainer.nameOfSubsystem.desiredMethod();`
112112

113113
***
114114

115115
### New Project Files
116116

117-
- When creating a new command based robot project, the following classes (files) will be created:
118-
- **Robot.java** - The main class of the robot which is run when a robot boots up.
119-
- **OI.java** - This class binds our **commands** to a physical operator interface such as a joystick or controller.
120-
- This file is already in `#!java robotInit()` by default so classes called here will also be loaded by the program
121-
- **RobotMap.java** - This class is used to hold all the ports or ID numbers of sensors or devices connected to the robot and assign them a variable name.
122-
- This provides flexibility for changing wiring, makes checking the wiring easier, and significantly reduces the number of magic numbers floating around.
123-
- **ExampleSubsystem.java** and **ExampleCommand.java** are auto-created examples.
117+
See [Default Project Contents](../programming/new_project.md#default-project-contents)
124118

125119
***
126120

@@ -129,6 +123,6 @@ Making FRC Programming Easy
129123
- Command based robots are broken down into **subsystems** and **commands**
130124
- **Subsystems** define what the robot is made of and what it can do while **commands** actually tell the robot to do those things
131125
- All classes must directly or indirectly connect to **Robot.java**.
132-
- All **Subsystems** must be added to **Robot.java**’s `#!java robotInit()`
126+
- All **Subsystems** must be added to **RobotContainer.java**
133127
- **RobotMap.java** holds port numbers and IDs accessible throughout the program by typing: `#!java RobotMap.NameOfMotor()`
134-
- **OI.java** connects our commands to physical controllers
128+
- **RobotContainer.java** contains our publicly accessible instances of our subsystems. It also connects our commands to physical controllers.

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The unofficial FIRST Robotics Competition Java Programming Tutorial.
66

77
!!! Info
88
Updated for the 2021 Season
9-
Last updated: 10/30/20
9+
Last updated: 9/30/21
1010

1111
**Disclaimer:** Some screenshots may have different colors, icons, more/less folders/files than you due to themes or personal settings. This is normal and should not impact the tutorial. If you still have any questions please contact us.
1212

docs/programming/new_project.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ Before we can start programing a robot, we must create a new project in Visual S
5151

5252
### Default Project Contents
5353

54-
<!-- TODO: Maybe remove this or combine it with the WPILib section -->
55-
5654
Newly created projects have many files within them. We only care about the contents within the **src/main/java/frc/robot/** folder. Everything else can be ignored at this point in the tutorial.
5755

5856
**Files in the robot folder:**
@@ -62,7 +60,8 @@ Newly created projects have many files within them. We only care about the conte
6260
- **ExampleSubsystem.java**
6361
- An example SubSystem
6462
- **Constants.java** (new in 2020, replaces RobotMap.java)
65-
- Used to map physical ports (digital if using the CAN bus) to variables in the code
63+
- Used to map physical ports (digital if using the CAN bus) of sensors or devices connected to the robot and assign them a variable name to be used in other parts of the code.
64+
- This provides flexibility for changing wiring, makes checking the wiring easier, and significantly reduces the number of magic numbers floating around.
6665
- Can also be used to store generic constant values as variables in the code
6766
- **Main.java**
6867
- Used for advanced programming
@@ -71,6 +70,7 @@ Newly created projects have many files within them. We only care about the conte
7170
- Used to declare our subsystem
7271
- Used to create a connection between commands and Operator Interfaces (OI) such as Joysticks or buttons
7372
- **Robot.java**
73+
- The main class of the robot which is run when a robot boots up.
7474
- Used to run special methods in the init and period phases of the auto, teleop, and disabled states
7575

7676
??? Example

0 commit comments

Comments
 (0)