Skip to content

Commit 607eb14

Browse files
committed
Update at 'Sat Jun 07 11:28:01 EDT 2025'
1 parent b2fd0f2 commit 607eb14

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
@@ -314,7 +314,7 @@ private void configureBindings() {
314314
// auto align right
315315
// positive moves right for second param of translation
316316
joystick.b().whileTrue(Commands.parallel(
317-
new DriveToPose(drivetrain, new Transform2d(Units.inchesToMeters(-33.5/2-1.5), Units.inchesToMeters(0.5+2.25+.25), Rotation2d.fromDegrees(-5)), joystick, 8),
317+
new DriveToPose(drivetrain, new Transform2d(Units.inchesToMeters(-33.5/2-1.5), Units.inchesToMeters(0.5+2.25+.25), Rotation2d.fromDegrees(0)), joystick, 8),
318318
s_Shooter.shoot()
319319
))
320320
.onFalse(new InstantCommand(()->joystick.setRumble(RumbleType.kBothRumble, 0))

src/main/java/frc/robot/generated/TunerConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public class TunerConstants {
9595

9696
// Theoretical free speed (m/s) at 12 V applied output;
9797
// This needs to be tuned to your individual robot
98-
public static final LinearVelocity kSpeedAt12Volts = MetersPerSecond.of(3.7); //∞
98+
public static final LinearVelocity kSpeedAt12Volts = MetersPerSecond.of(5.21); //∞
9999
public static final LinearVelocity kSlowSpeed = MetersPerSecond.of(3);
100100

101101
// Every 1 rotation of the azimuth results in kCoupleRatio drive motor turns;

0 commit comments

Comments
 (0)