Skip to content

Commit

Permalink
return pro features
Browse files Browse the repository at this point in the history
  • Loading branch information
JayK445 committed Jan 14, 2024
1 parent 768841a commit 64c4f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ public static final class Params {
public static final Slot0Configs STEER_MOTOR_GAINS =
new Slot0Configs().withKP(10).withKI(0).withKD(0).withKS(0).withKV(0).withKA(0);
public static final ClosedLoopOutputType DRIVE_CLOSED_LOOP_OUTPUT =
ClosedLoopOutputType.Voltage;
ClosedLoopOutputType.TorqueCurrentFOC;
public static final ClosedLoopOutputType STEER_CLOSED_LOOP_OUTPUT =
ClosedLoopOutputType.Voltage;
ClosedLoopOutputType.TorqueCurrentFOC;
public static final SteerFeedbackType FEEDBACK_SOURCE =
SteerFeedbackType.RemoteCANcoder; // dunno if this is the best option
SteerFeedbackType.FusedCANcoder; // dunno if this is the best option
public static final double SPEED_TWELVE_VOLTS = 0;
public static final double SLIP_CURRENT = 0; // optional
}
Expand Down

0 comments on commit 64c4f51

Please sign in to comment.