Skip to content

Commit

Permalink
Change shooter angle config
Browse files Browse the repository at this point in the history
  • Loading branch information
viggy96 committed Aug 2, 2024
1 parent c74b6a9 commit edb1b2a
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 @@ -168,7 +168,7 @@ public static class Shooter {
);
public static final TrapezoidProfile.Constraints ANGLE_MOTION_CONSTRAINT = new TrapezoidProfile.Constraints(
Units.DegreesPerSecond.of(360.0),
Units.DegreesPerSecond.of(360.0 * 12).per(Units.Second)
Units.DegreesPerSecond.of(360.0 * 8).per(Units.Second)
);
public static final List<Entry<Measure<Distance>,State>> SHOOTER_MAP = Arrays.asList(
Map.entry(Units.Meters.of(0.00), new State(Units.MetersPerSecond.of(15.0), Units.Degrees.of(55.0))),
Expand Down

0 comments on commit edb1b2a

Please sign in to comment.