Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 52e788e

Browse files
committed
Fix CANDLe and 4p
1 parent cf08973 commit 52e788e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ public void initDefaultCommands_teleop() {
176176
return (
177177
Math.abs(driverController.getRightX()) > 0.05
178178
|| Math.abs(driverController.getRightY()) > 0.05
179+
|| driverController.getCircleButton()
179180
);
180181
}
181182
else if (driverController.getCircleButton()) {

src/main/java/frc/robot/commands/autos/Reliable4Piece.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public Reliable4Piece(SwerveDrivetrain swerve, String autoPath, SuperSystem supe
5252
),
5353
// Piece 1 shot
5454
Commands.parallel(
55+
superSystem.intakeRoller.intakeCommand(),
5556
AutoBuilder.followPath(pathGroup.get(1)),
5657
Commands.sequence(
5758
superSystem.backupIndexerAndShooter(),
@@ -77,6 +78,7 @@ public Reliable4Piece(SwerveDrivetrain swerve, String autoPath, SuperSystem supe
7778
),
7879
// Piece 2 shot
7980
Commands.parallel(
81+
superSystem.intakeRoller.intakeCommand(),
8082
AutoBuilder.followPath(pathGroup.get(3)),
8183
Commands.sequence(
8284
superSystem.backupIndexerAndShooter(),
@@ -103,6 +105,7 @@ public Reliable4Piece(SwerveDrivetrain swerve, String autoPath, SuperSystem supe
103105

104106
// Piece 3 shot
105107
Commands.parallel(
108+
superSystem.intakeRoller.intakeCommand(),
106109
AutoBuilder.followPath(pathGroup.get(5)),
107110
Commands.sequence(
108111
superSystem.backupIndexerAndShooter(),

0 commit comments

Comments
 (0)