|
| 1 | +controller_manager: |
| 2 | + ros__parameters: |
| 3 | + update_rate: 100 # Hz |
| 4 | + |
| 5 | + hardware_components_initial_state: |
| 6 | + unconfigured: |
| 7 | + # Decide which hardware component will be only loaded |
| 8 | + - FakeThreeDofBot |
| 9 | + inactive: |
| 10 | + # Decide which hardware component will start configured |
| 11 | + - RRBotSystemWithSensor |
| 12 | + # not listed hardware component should be started immediately |
| 13 | + |
| 14 | + # Global controllers |
| 15 | + joint_state_broadcaster: |
| 16 | + type: joint_state_broadcaster/JointStateBroadcaster |
| 17 | + |
| 18 | + # RRBot controllers |
| 19 | + rrbot_joint_state_broadcaster: |
| 20 | + type: joint_state_broadcaster/JointStateBroadcaster |
| 21 | + |
| 22 | + rrbot_position_controller: |
| 23 | + type: forward_command_controller/ForwardCommandController |
| 24 | + |
| 25 | + rrbot_external_fts_broadcaster: |
| 26 | + type: force_torque_sensor_broadcaster/ForceTorqueSensorBroadcaster |
| 27 | + |
| 28 | + # RRBot with sensor controllers |
| 29 | + rrbot_with_sensor_joint_state_broadcaster: |
| 30 | + type: joint_state_broadcaster/JointStateBroadcaster |
| 31 | + |
| 32 | + rrbot_with_sensor_position_controller: |
| 33 | + type: forward_command_controller/ForwardCommandController |
| 34 | + |
| 35 | + rrbot_with_sensor_fts_broadcaster: |
| 36 | + type: force_torque_sensor_broadcaster/ForceTorqueSensorBroadcaster |
| 37 | + |
| 38 | + # ThreeDofBot controllers |
| 39 | + threedofbot_joint_state_broadcaster: |
| 40 | + type: joint_state_broadcaster/JointStateBroadcaster |
| 41 | + |
| 42 | + threedofbot_position_controller: |
| 43 | + type: forward_command_controller/ForwardCommandController |
| 44 | + |
| 45 | + threedofbot_pid_gain_controller: |
| 46 | + type: forward_command_controller/ForwardCommandController |
| 47 | + |
| 48 | +# global joint_state_broadcaster |
| 49 | +# joint_state_broadcaster: |
| 50 | +# ros__parameters: |
| 51 | + # nothing to configure |
| 52 | + |
| 53 | +# RRBot controllers |
| 54 | +rrbot_joint_state_broadcaster: |
| 55 | + ros__parameters: |
| 56 | + use_local_topics: True |
| 57 | + joints: |
| 58 | + - rrbot_joint1 |
| 59 | + - rrbot_joint2 |
| 60 | + interfaces: |
| 61 | + - position |
| 62 | + |
| 63 | +rrbot_position_controller: |
| 64 | + ros__parameters: |
| 65 | + joints: |
| 66 | + - rrbot_joint1 |
| 67 | + - rrbot_joint2 |
| 68 | + interface_name: position |
| 69 | + |
| 70 | +rrbot_external_fts_broadcaster: |
| 71 | + ros__parameters: |
| 72 | + sensor_name: rrbot_tcp_fts_sensor |
| 73 | + frame_id: rrbot_tool_link |
| 74 | + |
| 75 | + |
| 76 | +# RRBot with sensor controllers |
| 77 | +rrbot_with_sensor_joint_state_broadcaster: |
| 78 | + ros__parameters: |
| 79 | + use_local_topics: True |
| 80 | + joints: |
| 81 | + - rrbot_with_sensor_joint1 |
| 82 | + - rrbot_with_sensor_joint2 |
| 83 | + interfaces: |
| 84 | + - position |
| 85 | + |
| 86 | +rrbot_with_sensor_position_controller: |
| 87 | + ros__parameters: |
| 88 | + joints: |
| 89 | + - rrbot_with_sensor_joint1 |
| 90 | + - rrbot_with_sensor_joint2 |
| 91 | + interface_name: position |
| 92 | + |
| 93 | +rrbot_with_sensor_fts_broadcaster: |
| 94 | + ros__parameters: |
| 95 | + interface_names.force.x: rrbot_with_sensor_tcp_fts_sensor/force.x |
| 96 | + interface_names.torque.z: rrbot_with_sensor_tcp_fts_sensor/torque.z |
| 97 | + frame_id: rrbot_with_sensor_tool_link |
| 98 | + |
| 99 | +# ThreeDofBot controllers |
| 100 | +threedofbot_joint_state_broadcaster: |
| 101 | + ros__parameters: |
| 102 | + use_local_topics: True |
| 103 | + joints: |
| 104 | + - threedofbot_joint1 |
| 105 | + - threedofbot_joint2 |
| 106 | + - threedofbot_joint3 |
| 107 | + interfaces: |
| 108 | + - position |
| 109 | + - pid_gain |
| 110 | + |
| 111 | +threedofbot_position_controller: |
| 112 | + ros__parameters: |
| 113 | + joints: |
| 114 | + - threedofbot_joint1 |
| 115 | + - threedofbot_joint2 |
| 116 | + - threedofbot_joint3 |
| 117 | + interface_name: position |
| 118 | + |
| 119 | +threedofbot_pid_gain_controller: |
| 120 | + ros__parameters: |
| 121 | + joints: |
| 122 | + - threedofbot_joint1 |
| 123 | + - threedofbot_joint2 |
| 124 | + - threedofbot_joint3 |
| 125 | + interface_name: pid_gain |
0 commit comments