Skip to content

Commit

Permalink
Remove static status from Climber methods
Browse files Browse the repository at this point in the history
  • Loading branch information
omentic committed Jan 22, 2020
1 parent 2b9dbe6 commit 9d339e3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ public Climber() {
mClimberNEO = new CANSparkMax(Constants.Climber.kWinchMotorId, MotorType.kBrushless);
}

public static void extend() {
public void extend() {
mClimber775Pro.set(ControlMode.PercentOutput, 0.0);
mClimberNEO.set(0.0);
}

public static void winch() {
public void winch() {
mClimber775Pro.set(ControlMode.PercentOutput, 0.0);
mClimberNEO.set(0.0);
}

public static void reverse() {
public void reverse() {
mClimber775Pro.set(ControlMode.PercentOutput, 0.0);
mClimberNEO.set(0.0);
}

public static void stop() {
public void stop() {
mClimber775Pro.set(ControlMode.PercentOutput, 0.0);
mClimberNEO.set(0.0);
}
Expand Down

0 comments on commit 9d339e3

Please sign in to comment.