Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
liulinden committed Jan 19, 2024
2 parents 143fff2 + 698a278 commit c385b48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/commands/AutoDriveForward.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
package frc.robot.commands;
import edu.wpi.first.math.geometry.Transform2d;
import edu.wpi.first.math.geometry.Translation2d;
import edu.wpi.first.math.kinematics.ChassisSpeeds;
import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.SwerveDrivetrain;
Expand All @@ -23,7 +25,6 @@ public AutoDriveForward(SwerveDrivetrain drivetrain) {
public void initialize() {
ChassisSpeeds desiredState = new ChassisSpeeds(0.5,0,0);
this.beganDriving = System.currentTimeMillis();

drivetrain.setDesiredState(desiredState);
}

Expand Down

0 comments on commit c385b48

Please sign in to comment.