Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Commit

Permalink
Speed Limiter
Browse files Browse the repository at this point in the history
  • Loading branch information
deanlange committed Jan 10, 2020
1 parent c3b8685 commit 2e098ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/DriveTrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ protected void initDefaultCommand() {
}

public void drive(double l, double r) {
left1.set(-l);
right1.set(r);
left1.set(-l * 0.5);
right1.set(r * 0.5);
}

public void stop() {
Expand Down

0 comments on commit 2e098ac

Please sign in to comment.