Skip to content

Commit

Permalink
Added mailbox to robotcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
AraReighard committed Feb 1, 2024
1 parent a3a727d commit a4e741c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import frc.robot.commands.RunIntake;
import frc.robot.subsystems.Drive;
import frc.robot.subsystems.Intake;
import frc.robot.subsystems.mailbox.Mailbox;
import frc.robot.subsystems.mailbox.MailboxBelts;
import frc.robot.subsystems.mailbox.MailboxPneumatics;

Expand All @@ -48,6 +49,9 @@ public class RobotContainer {
/** Singleton instance of {@link MailboxBelts} for the whole robot. */
public static MailboxBelts mailboxBelts = new MailboxBelts();

/** Singleton instance of {@link Mailbox} for the whole robot. */
public static Mailbox mailbox = new Mailbox();

/** Singleton instance of {@link Intake} for the whole robot. */
public static Intake intake = new Intake();

Expand Down

0 comments on commit a4e741c

Please sign in to comment.