Skip to content

Commit

Permalink
Update pneumatics
Browse files Browse the repository at this point in the history
Updated Pneumatics Hub CAN ID to work with compressor and solenoids.

Updated solenoid channels.
  • Loading branch information
garrettsummerfi3ld committed Feb 8, 2024
1 parent c6b2bd2 commit 079fa76
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 @@ -34,13 +34,13 @@ public static final class Auton {

public static final class PneumaticsConstants {

public static final int PneumaticsMoudleID = 6;
public static final int PneumaticsMoudleID = 61;

public static final class DumpConstants {

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

public static final class ElevatorConstants {
Expand Down Expand Up @@ -75,13 +75,13 @@ public static class MechanismConstants {
public static final int INTAKE_MOTOR_2 = 52;
public static final boolean INTAKE_MOTOR_1_INVERTED = true;
public static final boolean INTAKE_MOTOR_2_INVERTED = false;
public static final double INTAKE_MOTOR_SPEED = 1;
public static final double INTAKE_MOTOR_SPEED = 0.25;

// Conveyor Motors
public static final int CONVEYOR_MOTOR_1 = 1;
public static final int CONVEYOR_MOTOR_2 = 2;
public static final boolean CONVEYOR_MOTOR_1_INVERTED = true;
public static final boolean CONVEYOR_MOTOR_2_INVERTED = false;
public static final double CONVEYOR_MOTOR_SPEED = 1;
public static final double CONVEYOR_MOTOR_SPEED = 0.25;
}
}

0 comments on commit 079fa76

Please sign in to comment.