Skip to content

Commit

Permalink
Renamed a log variable
Browse files Browse the repository at this point in the history
  • Loading branch information
superpenguin612 committed Jan 25, 2024
1 parent 5c99ff0 commit ccf82c9
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 @@ -140,10 +140,10 @@ public enum DriveMode {
FIELD_ORIENTED
}

/** The mode of driving, either robot relative or field relative. */
/** The mode of driving, either robot relative or field relative */
private DriveMode driveMode = DriveMode.FIELD_ORIENTED;

@Log(name = "Commanded X Velocity", groups = "Control")
@Log(name = "commandedXVelocity", groups = "Control")
private double commandedX = 0.0;

@Log(name = "Commanded Y Velocity", groups = "Control")
Expand Down

0 comments on commit ccf82c9

Please sign in to comment.