Skip to content

Commit

Permalink
Update Constants.java
Browse files Browse the repository at this point in the history
  • Loading branch information
OakvilleDynamicsProgrammer committed Feb 10, 2024
1 parent 6d33b1b commit 4ae53a2
Showing 1 changed file with 2 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 @@ -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 = 0.15;
public static final double INTAKE_MOTOR_SPEED = 1;

// 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 = .15;
}
}

0 comments on commit 4ae53a2

Please sign in to comment.