Skip to content

Commit

Permalink
fix: made gear ratios non-zero
Browse files Browse the repository at this point in the history
  • Loading branch information
AdleyJ committed Jan 28, 2024
1 parent 33b1517 commit 3f0b2e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/team1540/robot2024/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,16 @@ public static class Drivetrain {
public static final double MAX_ANGULAR_SPEED = MAX_LINEAR_SPEED / DRIVE_BASE_RADIUS;
}
public static class Indexer {
// TODO: fix these constants
public static final int INTAKE_ID = 0;
public static final int FEEDER_ID = 0;
public static final double FEEDER_KP = 0.0;
public static final double FEEDER_KI = 0.0;
public static final double FEEDER_KD = 0.0;
public static final double FEEDER_KS = 0.0;
public static final double FEEDER_KV = 0.0;
public static final double FEEDER_GEAR_RATIO = 0.0;
public static final double INTAKE_GEAR_RATIO = 0.0;
public static final double FEEDER_GEAR_RATIO = 1.0;
public static final double INTAKE_GEAR_RATIO = 1.0;

}
}

0 comments on commit 3f0b2e5

Please sign in to comment.