Skip to content

Commit 85bc859

Browse files
committed
Update at 'Thu Apr 17 10:44:14 EDT 2025'
1 parent aa49d8e commit 85bc859

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,11 @@ public void periodic() {
190190
}
191191

192192
public void stopDrive() {
193+
// drivetrain.setControl(new );
193194
drivetrain.applyRequest(() -> drive
194-
.withVelocityX(-joystick.getLeftX() * SlowSpeed)
195-
.withVelocityY(-joystick.getLeftY() * SlowSpeed)
196-
.withRotationalRate(-joystick.getRightX() * SlowAngularRate));
195+
.withVelocityX(-joystick.getLeftX() * 0)
196+
.withVelocityY(-joystick.getLeftY() * 0)
197+
.withRotationalRate(-joystick.getRightX() * 0));
197198
}
198199

199200

0 commit comments

Comments
 (0)