Skip to content

Commit

Permalink
[Spotless] Apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettsummerfi3ld authored and github-actions[bot] committed Mar 12, 2024
1 parent 30695d5 commit 034cd00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public final class HardwareConstants {
public static final class PneumaticsChannel {
public static final int DUMP_OUT = 0;
public static final int DUMP_IN = 15;
public static final int CLIMB_OUT = 3;
public static final int CLIMB_IN = 5;
public static final int CLIMB_OUT = 3;
public static final int CLIMB_IN = 5;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/main/java/frc/robot/subsystems/ClimbSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class ClimbSubsystem extends SubsystemBase {
HardwareConstants.PneumaticsChannel.CLIMB_OUT,
HardwareConstants.PneumaticsChannel.CLIMB_IN);
private boolean isClimbing = false;

public ClimbSubsystem() {
SmartDashboard.putBoolean(getName(), isClimbing);
}
Expand Down

0 comments on commit 034cd00

Please sign in to comment.