Skip to content

Commit

Permalink
add back trigger wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob1010-h committed Jan 23, 2024
1 parent 93d9eb9 commit f2b44bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ public class RobotContainer implements Logged {
@SuppressWarnings("unused")
private final PatriBoxController operator;

private final Swerve swerve;
private Swerve swerve;
private final Intake intake;
@SuppressWarnings("unused")
private final DriverUI driverUI;

private final Limelight limelight;
private final Climb climb;
private TriggerWheel triggerWheel;

public RobotContainer() {
driver = new PatriBoxController(OIConstants.DRIVER_CONTROLLER_PORT, OIConstants.DRIVER_DEADBAND);
Expand All @@ -46,7 +47,7 @@ public RobotContainer() {
climb = new Climb();
swerve = new Swerve();
driverUI = new DriverUI();
triggerWheel = new Trigger();
triggerWheel = new TriggerWheel();

limelight.setDefaultCommand(Commands.run(() -> {
// Create an "Optional" object that contains the estimated pose of the robot
Expand Down

0 comments on commit f2b44bb

Please sign in to comment.