Skip to content

Commit 5d06693

Browse files
authored
fix cli commands (#49)
1 parent f19790e commit 5d06693

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ Each of the described example cases from the roadmap has its own launch and URDF
8585

8686
3. Open another terminal and load, configure and start controllers:
8787
```
88-
ros2 control load_start joint_state_controller
89-
ros2 control load_configure forward_command_controller_position
88+
ros2 control load_start_controller joint_state_controller
89+
ros2 control load_configure_controller forward_command_controller_position
9090
```
9191

9292
Check if controller is loaded properly:
9393
```
94-
ros2 control list
94+
ros2 control list_controller
9595
```
9696
You should get the response:
9797
```
@@ -101,12 +101,12 @@ Each of the described example cases from the roadmap has its own launch and URDF
101101

102102
4. Starting controller:
103103
```
104-
ros2 control switch --start-controllers forward_command_controller_position
104+
ros2 control switch_controllers --start-controllers forward_command_controller_position
105105
```
106106

107107
Check if controllers are activated:
108108
```
109-
ros2 control list
109+
ros2 control list_controller
110110
```
111111
You should get `active` in the response:
112112
```

0 commit comments

Comments
 (0)