Skip to content

Commit 397b6e5

Browse files
committed
Fixes misleading variable naming in PID header file
1 parent 98b9915 commit 397b6e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PIDController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class PIDController
2121
void begin(float init_state, float kp, float ki, float kd);
2222
void reset();
2323
void setBounded(bool bounded);
24-
void setOutputRange(float upper, float lower);
24+
void setOutputRange(float lower, float upper);
2525
void setTolerance(float setpoint_tol, float derivative_tol, bool apply_tolerance);
2626
void setIntegratorBounds(float min, float max);
2727

0 commit comments

Comments
 (0)