Skip to content

Commit

Permalink
renamed classes and added javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Haefele committed Jan 25, 2024
1 parent 5e361b3 commit ba777b2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import frc.robot.commands.DriveRobotOriented;
import frc.robot.commands.EnterXMode;
import frc.robot.subsystems.Drive;
import frc.robot.subsystems.mailbox.Belt;
import frc.robot.subsystems.mailbox.Pneumatics;
import frc.robot.subsystems.mailbox.MailboxBelts;
import frc.robot.subsystems.mailbox.MailboxPneumatics;

public class RobotContainer {

Expand All @@ -35,8 +35,12 @@ public class RobotContainer {
* awful.
*/
public static Drive drive = new Drive();
public static Pneumatics pneumatics = new Pneumatics();
public static Belt belt = new Belt();

/** Creates a mailboxPneumatics object called "pneumatics" */
public static MailboxPneumatics pneumatics = new MailboxPneumatics();

/** Creates a mailboxBelts object called "blets" */
public static MailboxBelts belts = new MailboxBelts();

/*
* ************
Expand Down

0 comments on commit ba777b2

Please sign in to comment.