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

Commit

Permalink
YAY
Browse files Browse the repository at this point in the history
  • Loading branch information
carokhan authored Oct 10, 2024
1 parent 5f749d7 commit 3bce2b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void processInputs(PivotIOInputsAutoLogged inputs) {
inputs.pivotCurrentAmps = pivot.getOutputCurrent();
inputs.pivotTempCelsius = pivot.getMotorTemperature();
inputs.pivotOffset = pivotAbs.getOffset();
inputs.pivotStalled = stallDebouncer.calculate(pivot.getOutputCurrent() > 20);
inputs.pivotStalled = stallDebouncer.calculate((pivot.getOutputCurrent() > 20) && (pivotEnc.getVelocity() > ));
}

@Override
Expand Down

0 comments on commit 3bce2b6

Please sign in to comment.