Skip to content

Commit

Permalink
fix requested change of motor id
Browse files Browse the repository at this point in the history
  • Loading branch information
aidan-underwood committed Jan 27, 2024
1 parent 62780f8 commit f1a1553
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ public static final class ElevatorWrist {
public static final int TALON_ID = -1;
public static final int NEO_ID = -1;
}

/**
* Intake Constnats
*/
public static final class Intake {
public static final int INTAKE_MOTOR_ID = -1;
public static final int INDEXER_MOTOR_ID = -1;
}
}

/**
Expand Down Expand Up @@ -64,14 +72,4 @@ public static final class ElevatorWristConstants {
*/
public static final class Pneumatics {
}

/**
* Intake Constnats
*/
public static final class Intake {
public static final int INTAKE_MOTOR_ID = 0;
public static final int INDEXER_MOTOR_ID = 1;
}


}

0 comments on commit f1a1553

Please sign in to comment.