Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
set wrist current limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen756 committed Aug 26, 2023
1 parent 8fdba28 commit 860c117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/wrist/WristSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public WristSubsystem(CANSparkMax motor) {
this.motor = motor;
encoder = motor.getEncoder();
pid = motor.getPIDController();

motor.setSmartCurrentLimit(35);
pid.setP(5);
pid.setI(0);
pid.setD(0);
Expand Down

0 comments on commit 860c117

Please sign in to comment.