We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa49d8e commit 85bc859Copy full SHA for 85bc859
src/main/java/frc/robot/RobotContainer.java
@@ -190,10 +190,11 @@ public void periodic() {
190
}
191
192
public void stopDrive() {
193
+ // drivetrain.setControl(new );
194
drivetrain.applyRequest(() -> drive
- .withVelocityX(-joystick.getLeftX() * SlowSpeed)
195
- .withVelocityY(-joystick.getLeftY() * SlowSpeed)
196
- .withRotationalRate(-joystick.getRightX() * SlowAngularRate));
+ .withVelocityX(-joystick.getLeftX() * 0)
+ .withVelocityY(-joystick.getLeftY() * 0)
197
+ .withRotationalRate(-joystick.getRightX() * 0));
198
199
200
0 commit comments