Skip to content

Commit

Permalink
Conveyor Belt Motor Direction Change
Browse files Browse the repository at this point in the history
conveyor belt motors spin in the same direction, making the bot unable to carry the note up the ramp. this simple command change should fix that.
Further testing is prefered
  • Loading branch information
DLipovac93 committed Feb 14, 2024
1 parent 3d8afb9 commit 0941187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static class MechanismConstants {
// 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 = false;
public static final boolean CONVEYOR_MOTOR_1_INVERTED = true;
public static final boolean CONVEYOR_MOTOR_2_INVERTED = true;
public static final double CONVEYOR_MOTOR_SPEED = 0.30;
}
Expand Down

0 comments on commit 0941187

Please sign in to comment.