Skip to content

Commit

Permalink
Space
Browse files Browse the repository at this point in the history
  • Loading branch information
Merridew1 committed Dec 10, 2024
1 parent 3476f89 commit 886863a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/drive/Drivetrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void drive(Double lPower, double rPower) {
Logger.recordOutput("Drivetrain/leftPower", lPower);
Logger.recordOutput("Drivetrain/rightPower", rPower);
}

public Command driveCommand(CommandXboxController controller) {
return run(() -> drive(controller.getLeftY(), controller.getRightY()));
}
Expand Down

0 comments on commit 886863a

Please sign in to comment.