Skip to content

Commit

Permalink
fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
finnsherman committed Feb 17, 2024
1 parent 77ed986 commit 30c36c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/ElevatorSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ private static double metersToMotorPosition(double positionMeters) {
return (positionMeters / MOTOR_ENCODER_POSITION_COEFFICIENT);
}

public Command sysIdelevatorMotorQuasiCommand(Direction direction) {
public Command sysIdElevatorMotorQuasiCommand(Direction direction) {
return elevatorMotorSysIdRoutine.quasistatic(direction).withName("SysId Elevator Motor Quasistatic " + direction)
.finallyDo(this::stop);
}

public Command sysIdelevatorMotorDynamCommand(Direction direction) {
public Command sysIdElevatorMotorDynamCommand(Direction direction) {
return elevatorMotorSysIdRoutine.dynamic(direction).withName("SysId Elevator Motor Quasistatic " + direction)
.finallyDo(this::stop);
}
Expand Down

0 comments on commit 30c36c9

Please sign in to comment.