This commit is contained in:
Antoine PerreaultE 2024-02-29 19:30:12 -05:00
parent f8f03dde51
commit 5fcd2750b4

View File

@ -28,7 +28,7 @@ public class Drive extends SubsystemBase {
public AHRS Gyro = new AHRS();
public void drive(double x, double y, double zRotation){
swerveDrive.drive(new Translation2d(x*5, y*5), zRotation*4, true, false);
swerveDrive.drive(new Translation2d(x*5, y*5), zRotation*4, false, false);
}
public Drive() {