Skip to content

Commit

Permalink
BF: PID Controller (SISO) #1048
Browse files Browse the repository at this point in the history
  • Loading branch information
amesin13 committed Oct 17, 2024
1 parent e868131 commit 4e08002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlpro/bf/control/controllers/pid_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self,Kp: float,
self.previous_tstamp = None
self.enable_windup = enable_anti_windup
self.windup_limit = windup_limit
self.output_limits = p_output_space.get_dim(p_id=p_id).get_boundaries()
self.output_limits = p_output_space.get_dims()[0].get_boundaries()


## -------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 4e08002

Please sign in to comment.