Skip to content

Commit

Permalink
Fixes misleading variable naming in PID header file
Browse files Browse the repository at this point in the history
  • Loading branch information
jkleiber committed Jun 14, 2022
1 parent 98b9915 commit 397b6e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIDController.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class PIDController
void begin(float init_state, float kp, float ki, float kd);
void reset();
void setBounded(bool bounded);
void setOutputRange(float upper, float lower);
void setOutputRange(float lower, float upper);
void setTolerance(float setpoint_tol, float derivative_tol, bool apply_tolerance);
void setIntegratorBounds(float min, float max);

Expand Down

0 comments on commit 397b6e5

Please sign in to comment.