Skip to content

Commit

Permalink
why was it rearLeft? I'm dumb
Browse files Browse the repository at this point in the history
--Gabe
  • Loading branch information
willitcode committed Oct 23, 2023
1 parent 629c26a commit 3bb0d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Drive.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void moveSimple(double leftSpeed, double rightSpeed) {
public void setVelocity(double velocityLeft, double velocityRight) {
frontLeft.set(ControlMode.Velocity, velocityLeft);
System.out.println(frontLeft.get());
rearLeft.set(ControlMode.Velocity, velocityLeft);
frontRight.set(ControlMode.Velocity, velocityRight);
}

/**
Expand Down

0 comments on commit 3bb0d38

Please sign in to comment.