Skip to content

Commit 9d42e79

Browse files
committed
buncha changes to sparlmax
1 parent 7f43674 commit 9d42e79

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/frc/robot/subsystems/dropper/DropperIOSparkMax.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ public void stop(){
9191
//PID
9292

9393
public void setPIDGains(double kp, ki, kd){
94-
velocityPID.setP(p);//idek
95-
velocityPID.setI(i);
96-
velocityPID.setD(d);
94+
velocityPID.setP(kp);//idek
95+
velocityPID.setI(ki);
96+
velocityPID.setD(kd);
9797
}
9898

9999

0 commit comments

Comments
 (0)