Skip to content

Commit

Permalink
added motor inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
sofiebudman committed Mar 3, 2024
1 parent aa2233f commit c10e296
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/carlmontrobotics/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public static final class Arm {
public static final int ARM_MOTOR_PORT_1 = 7;
public final static int ARM_MOTOR_PORT_2 = 8;
//Config for motors
public static final boolean MOTOR_INVERTED = true; //Todo: find all these (they are definetely wrong)
public static final boolean MOTOR_INVERTED_1 = true; //Todo: find all these (they are definetely wrong)
public static final boolean MOTOR_INVERTED_2 = false;
public static final double ROTATION_TO_RAD = 2 * Math.PI;
public static final boolean ENCODER_INVERTED = false;
public static final double ARM_TELEOP_MAX_GOAL_DIFF_FROM_CURRENT_RAD = 0;
Expand Down

0 comments on commit c10e296

Please sign in to comment.