Skip to content

Commit 23e9e51

Browse files
committed
move middle pass boolean, wall pass = default
1 parent a0a1cb7 commit 23e9e51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/frc/robot/RobotContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ private void configureMatchDashboard() {
580580
.addBoolean(
581581
"Middle Pass Mode?", () -> robotStateSubsystem.getFeedMode() == FeedMode.MIDDLE)
582582
.withSize(1, 1)
583-
.withPosition(5, 3);
583+
.withPosition(6, 2);
584584

585585
allianceColor =
586586
Shuffleboard.getTab("Match")

src/main/java/frc/robot/subsystems/robotState/RobotStateSubsystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class RobotStateSubsystem extends MeasurableSubsystem {
5151

5252
private RobotStates curState = RobotStates.IDLE;
5353
private RobotStates nextState = RobotStates.IDLE;
54-
private FeedMode feedMode = FeedMode.MIDDLE;
54+
private FeedMode feedMode = FeedMode.WALL;
5555

5656
private double[][] shootingLookupTable;
5757
private double[][] feedingLookupTable;

0 commit comments

Comments
 (0)