Advertisement
bhuvanchandradv

motors.yaml

Apr 1st, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. ubiquity_motor:
  2. serial_port: "/dev/ttyMMC"
  3. serial_baud: 38400
  4. controller_loop_rate: 20
  5. pid_proportional: 5000
  6. pid_integral: 0
  7. pid_derivative: 0
  8. pid_denominator: 1000
  9.  
  10. ubiquity_joint_publisher:
  11. type: "joint_state_controller/JointStateController"
  12. publish_rate: 50
  13.  
  14. ubiquity_velocity_controller:
  15. type: "diff_drive_controller/DiffDriveController"
  16. left_wheel: 'left_wheel_joint'
  17. right_wheel: 'right_wheel_joint'
  18. publish_rate: 50
  19. pose_covariance_diagonal: [0.2, 0.2, 0.2, 0.2, 0.2, 0.2]
  20. twist_covariance_diagonal: [0.2, 0.2, 0.2, 0.2, 0.2, 0.2]
  21. cmd_vel_timeout: 0.25
  22.  
  23. enable_odom_tf: false
  24.  
  25. wheel_separation : 0.32
  26. wheel_radius : 0.1015
  27.  
  28.  
  29. base_frame_id: base_link
  30.  
  31. # Wheel separation and radius multipliers
  32. wheel_separation_multiplier: 1.0 # default: 1.0
  33. wheel_radius_multiplier : 1.0 # default: 1.0
  34.  
  35. # Velocity and acceleration limits
  36. # Whenever a min_* is unspecified, default to -max_*
  37. linear:
  38. x:
  39. has_velocity_limits : false
  40. max_velocity : 1.0 # m/s
  41. has_acceleration_limits: true
  42. max_acceleration : 1.1 # m/s^2
  43. angular:
  44. z:
  45. has_velocity_limits : false
  46. max_velocity : 2.0 # rad/s
  47. has_acceleration_limits: true
  48. max_acceleration : 5.0 # rad/s^2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement