Skip to content

Commit

Permalink
Update pid documentation to match src code
Browse files Browse the repository at this point in the history
  • Loading branch information
huemerj committed Jan 13, 2023
1 parent 2b01337 commit eb45513
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/control_toolbox/pid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace control_toolbox
In particular, this class implements the standard
pid equation:
\f$command = -p_{term} - i_{term} - d_{term} \f$
\f$command = p_{term} + i_{term} + d_{term} \f$
where: <br>
<UL TYPE="none">
Expand All @@ -72,7 +72,7 @@ namespace control_toolbox
given:<br>
<UL TYPE="none">
<LI> \f$ p_{error} = p_{state} - p_{target} \f$.
<LI> \f$ p_{error} = p_{target} - p_{state} \f$.
</UL>
\param p Proportional gain
Expand Down

0 comments on commit eb45513

Please sign in to comment.