Skip to content

Commit

Permalink
removed a negative sign
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen-Zeng committed Feb 10, 2025
1 parent b7e2875 commit ba46c84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public FroggyImpl() {
BStream.create(
() ->
rollerMotor.getSupplyCurrent().getValueAsDouble()
< -Settings.Froggy.CORAL_CURRENT_THRESHOLD) // coral stalls in the negative direction
< Settings.Froggy.CORAL_CURRENT_THRESHOLD) // coral stalls in the negative direction
.filtered(new BDebounce.Rising(Settings.Froggy.STALL_DEBOUNCE_TIME));

isAlgaeStalling =
Expand Down

0 comments on commit ba46c84

Please sign in to comment.