Skip to content

Commit

Permalink
first test working acceleration and speed limiting
Browse files Browse the repository at this point in the history
Jerk limiting not tested
  • Loading branch information
VincidaB committed Apr 24, 2024
1 parent 2a75e5d commit a768bf0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/ezbot_robot/config/omnidirectional_controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,16 @@ omnidirectional_controller:
use_stamped_vel: false

linear_has_velocity_limits: true
linear_min_velocity: -0.1
linear_max_velocity: 0.1
linear_min_velocity: -5.0
linear_max_velocity: 5.0

linear_has_acceleration_limits: true
max_acceleration: 10.0
min_acceleration: -10.0

angular_has_acceleration_limits: true
angular_max_acceleration: 2.0
angular_min_acceleration: -2.0



0 comments on commit a768bf0

Please sign in to comment.