Skip to content

Commit

Permalink
Fix compile bug
Browse files Browse the repository at this point in the history
  • Loading branch information
anivanchen committed Jan 17, 2024
1 parent 0cb359c commit 980c5f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/main/java/com/stuypulse/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ private void configureDriverBindings() {
.onFalse(new LauncherStop());

driver.getBottomButton()
.onTrue(new LaunchPrepare())
.whileTrue(new WaitCommand(0.5).andThen(new LauncherLaunch()))
.onFalse(new LauncherStop());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public static AbstractDrivetrain getInstance() {

public abstract void tankDriveVolts(double leftVolts, double rightVolts);
public abstract void arcadeDrive(double speed, double angle);
public abstract void curvatureDrive(double speed, double angle, boolean isQuickTurn);

public abstract void stop();

Expand All @@ -38,7 +39,5 @@ public void periodicChild() {}
public void periodic() {
periodicChild();
}



}

0 comments on commit 980c5f9

Please sign in to comment.