Skip to content

Commit

Permalink
Cleanup controller config (#232) (#233)
Browse files Browse the repository at this point in the history
* Remove wrong yaml entries

* Rename effort_controller

(cherry picked from commit 934621e)

Co-authored-by: Christoph Fröhlich <christophfroehlich@users.noreply.github.com>
  • Loading branch information
mergify[bot] and christophfroehlich authored Sep 7, 2023
1 parent 0dc19ab commit 057f0b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
10 changes: 2 additions & 8 deletions gazebo_ros2_control_demos/config/cartpole_controller_effort.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@ controller_manager:
ros__parameters:
update_rate: 100 # Hz

effort_controllers:
effort_controller:
type: effort_controllers/JointGroupEffortController

joint_state_broadcaster:
type: joint_state_broadcaster/JointStateBroadcaster

effort_controllers:
effort_controller:
ros__parameters:
joints:
- slider_to_cart
command_interfaces:
- effort
state_interfaces:
- position
- velocity
- effort
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ velocity_controller:
ros__parameters:
joints:
- slider_to_cart
command_interfaces:
- velocity
state_interfaces:
- position
- velocity

imu_sensor_broadcaster:
ros__parameters:
sensor_name: cart_imu_sensor
Expand Down
2 changes: 1 addition & 1 deletion gazebo_ros2_control_demos/examples/example_effort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int main(int argc, char * argv[])
node = std::make_shared<rclcpp::Node>("effort_test_node");

auto publisher = node->create_publisher<std_msgs::msg::Float64MultiArray>(
"/effort_controllers/commands", 10);
"/effort_controller/commands", 10);

RCLCPP_INFO(node->get_logger(), "node created");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def generate_launch_description():
)

load_joint_trajectory_controller = ExecuteProcess(
cmd=['ros2', 'control', 'load_controller', '--set-state', 'active', 'effort_controllers'],
cmd=['ros2', 'control', 'load_controller', '--set-state', 'active', 'effort_controller'],
output='screen'
)

Expand Down

0 comments on commit 057f0b8

Please sign in to comment.