You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/basics/wpilib.md
+6-12
Original file line number
Diff line number
Diff line change
@@ -106,21 +106,15 @@ Making FRC Programming Easy
106
106
107
107
- 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
- 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();`
- 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();`
112
112
113
113
***
114
114
115
115
### New Project Files
116
116
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)
124
118
125
119
***
126
120
@@ -129,6 +123,6 @@ Making FRC Programming Easy
129
123
- Command based robots are broken down into **subsystems** and **commands**
130
124
-**Subsystems** define what the robot is made of and what it can do while **commands** actually tell the robot to do those things
131
125
- 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**
133
127
-**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.
Copy file name to clipboardexpand all lines: docs/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ The unofficial FIRST Robotics Competition Java Programming Tutorial.
6
6
7
7
!!! Info
8
8
Updated for the 2021 Season
9
-
Last updated: 10/30/20
9
+
Last updated: 9/30/21
10
10
11
11
**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.
Copy file name to clipboardexpand all lines: docs/programming/new_project.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -51,8 +51,6 @@ Before we can start programing a robot, we must create a new project in Visual S
51
51
52
52
### Default Project Contents
53
53
54
-
<!-- TODO: Maybe remove this or combine it with the WPILib section -->
55
-
56
54
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.
57
55
58
56
**Files in the robot folder:**
@@ -62,7 +60,8 @@ Newly created projects have many files within them. We only care about the conte
62
60
-**ExampleSubsystem.java**
63
61
- An example SubSystem
64
62
-**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.
66
65
- Can also be used to store generic constant values as variables in the code
67
66
-**Main.java**
68
67
- Used for advanced programming
@@ -71,6 +70,7 @@ Newly created projects have many files within them. We only care about the conte
71
70
- Used to declare our subsystem
72
71
- Used to create a connection between commands and Operator Interfaces (OI) such as Joysticks or buttons
73
72
-**Robot.java**
73
+
- The main class of the robot which is run when a robot boots up.
74
74
- Used to run special methods in the init and period phases of the auto, teleop, and disabled states
0 commit comments