|
| 1 | +controller_manager: |
| 2 | + ros__parameters: |
| 3 | + update_rate: 100 # Hz |
| 4 | + |
| 5 | + joint_state_broadcaster: |
| 6 | + type: joint_state_broadcaster/JointStateBroadcaster |
| 7 | + |
| 8 | + diff_drive_controller: |
| 9 | + type: diff_drive_controller/DiffDriveController |
| 10 | + |
| 11 | + imu_broadcaster: |
| 12 | + type: imu_sensor_broadcaster/IMUSensorBroadcaster |
| 13 | + |
| 14 | + arm_controller: |
| 15 | + type: joint_trajectory_controller/JointTrajectoryController |
| 16 | + |
| 17 | + gripper_controller: |
| 18 | + type: position_controllers/GripperActionController |
| 19 | + |
| 20 | +diff_drive_controller: |
| 21 | + ros__parameters: |
| 22 | + left_wheel_names: ["wheel_left_joint"] |
| 23 | + right_wheel_names: ["wheel_right_joint"] |
| 24 | + |
| 25 | + wheel_separation: 0.287 |
| 26 | + #wheels_per_side: 1 # actually 2, but both are controlled by 1 signal |
| 27 | + wheel_radius: 0.033 |
| 28 | + |
| 29 | + wheel_separation_multiplier: 1.0 |
| 30 | + left_wheel_radius_multiplier: 1.0 |
| 31 | + right_wheel_radius_multiplier: 1.0 |
| 32 | + |
| 33 | + publish_rate: 50.0 |
| 34 | + odom_frame_id: odom |
| 35 | + base_frame_id: base_footprint |
| 36 | + pose_covariance_diagonal : [0.001, 0.001, 0.001, 0.001, 0.001, 0.01] |
| 37 | + twist_covariance_diagonal: [0.001, 0.001, 0.001, 0.001, 0.001, 0.01] |
| 38 | + |
| 39 | + open_loop: true |
| 40 | + enable_odom_tf: true |
| 41 | + |
| 42 | + cmd_vel_timeout: 0.5 |
| 43 | + #publish_limited_velocity: true |
| 44 | + use_stamped_vel: false |
| 45 | + #velocity_rolling_window_size: 10 |
| 46 | + |
| 47 | + # Preserve turning radius when limiting speed/acceleration/jerk |
| 48 | + preserve_turning_radius: true |
| 49 | + |
| 50 | + # Publish limited velocity |
| 51 | + publish_cmd: true |
| 52 | + |
| 53 | + # Publish wheel data |
| 54 | + publish_wheel_data: true |
| 55 | + |
| 56 | + # Velocity and acceleration limits |
| 57 | + # Whenever a min_* is unspecified, default to -max_* |
| 58 | + linear.x.has_velocity_limits: true |
| 59 | + linear.x.has_acceleration_limits: true |
| 60 | + linear.x.has_jerk_limits: false |
| 61 | + linear.x.max_velocity: 0.26 |
| 62 | + linear.x.min_velocity: -0.26 |
| 63 | + linear.x.max_acceleration: 1.0 |
| 64 | + linear.x.max_jerk: 0.0 |
| 65 | + linear.x.min_jerk: 0.0 |
| 66 | + |
| 67 | + angular.z.has_velocity_limits: true |
| 68 | + angular.z.has_acceleration_limits: true |
| 69 | + angular.z.has_jerk_limits: false |
| 70 | + angular.z.max_velocity: 1.82 |
| 71 | + angular.z.min_velocity: -1.82 |
| 72 | + angular.z.max_acceleration: 4.0 |
| 73 | + angular.z.min_acceleration: -4.0 |
| 74 | + angular.z.max_jerk: 0.0 |
| 75 | + angular.z.min_jerk: 0.0 |
| 76 | + |
| 77 | +imu_broadcaster: |
| 78 | + ros__parameters: |
| 79 | + frame_id: imu_link |
| 80 | + sensor_name: imu |
| 81 | + |
| 82 | +arm_controller: |
| 83 | + ros__parameters: |
| 84 | + joints: |
| 85 | + - joint1 |
| 86 | + - joint2 |
| 87 | + - joint3 |
| 88 | + - joint4 |
| 89 | + interface_name: position |
| 90 | + |
| 91 | + command_interfaces: |
| 92 | + - position |
| 93 | + |
| 94 | + state_interfaces: |
| 95 | + - position |
| 96 | + - velocity |
| 97 | + |
| 98 | + state_publish_rate: 200.0 # Defaults to 50 |
| 99 | + action_monitor_rate: 20.0 # Defaults to 20 |
| 100 | + |
| 101 | + allow_partial_joints_goal: false # Defaults to false |
| 102 | + open_loop_control: true |
| 103 | + allow_integration_in_goal_trajectories: true |
| 104 | + constraints: |
| 105 | + stopped_velocity_tolerance: 0.01 # Defaults to 0.01 |
| 106 | + goal_time: 0.0 # Defaults to 0.0 (start immediately) |
| 107 | + |
| 108 | +gripper_controller: |
| 109 | + ros__parameters: |
| 110 | + joint: gripper_left_joint |
0 commit comments