Skip to content

Commit

Permalink
Update deadband, pneumatics constants
Browse files Browse the repository at this point in the history
Updated pneumatics constants to be sensible values.

Updated deadband for the controller to be sensible values.
  • Loading branch information
OakvilleDynamicsProgrammer committed Feb 18, 2024
1 parent 8957788 commit 8e91dd6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public static final class PneumaticsConstants {
public static final class DumpConstants {

// Uppy Downy solonoid
public static final int OUT = 4;
public static final int IN = 14;
public static final int OUT = 0;
public static final int IN = 1;
}

public static final class ElevatorConstants {
Expand All @@ -62,9 +62,9 @@ public static class OperatorConstants {
// TODO: Add button binds for driver controllers

// Joystick Deadband
public static final double LEFT_X_DEADBAND = 0.5;
public static final double LEFT_Y_DEADBAND = 0.5;
public static final double RIGHT_X_DEADBAND = 0.5;
public static final double LEFT_X_DEADBAND = 0.1;
public static final double LEFT_Y_DEADBAND = 0.1;
public static final double RIGHT_X_DEADBAND = 0.1;
public static final double TURN_CONSTANT = 6;
}

Expand Down

0 comments on commit 8e91dd6

Please sign in to comment.