Skip to content

Commit

Permalink
added startIntakeCamera
Browse files Browse the repository at this point in the history
  • Loading branch information
AraReighard committed Mar 19, 2024
1 parent 768e602 commit 1e0cdec
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 @@ -28,6 +28,7 @@
import frc.robot.commands.EnterXMode;
import frc.robot.commands.RunIntake;
import frc.robot.commands.RunIntakeReverse;
import frc.robot.commands.StartCamera;
import frc.robot.commands.auto.MoveAwayFromAmp;
import frc.robot.commands.auto.OnePieceAuto;
import frc.robot.commands.auto.TaxiAuto;
Expand Down Expand Up @@ -219,6 +220,9 @@ public class RobotContainer {
/** Singleton instance of {@link ClimbDown} for the whole robot. */
public static ClimbDown climbDown = new ClimbDown();

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

/* Autos */
/** Singleton instance of {@link MoveAwayFromAmp} for the whole robot. */
public static MoveAwayFromAmp moveAwayFromAmp = new MoveAwayFromAmp();
Expand Down

0 comments on commit 1e0cdec

Please sign in to comment.