Skip to content

Commit c089a54

Browse files
committedDec 21, 2024
update readme
1 parent e15eb82 commit c089a54

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed
 

‎README.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,27 @@ colcon build
1717

1818
# Instructions, all in separate terminals
1919

20-
Start simulator:
20+
Start nao_lola_client on the robot:
2121
```
22-
rcsoccersim3d
22+
ros2 run nao_lola_client nao_lola_client
2323
```
2424

25-
Launch NAO in simulator:
25+
Stiffen all joints on the robot
2626
```
27-
ros2 run rcss3d_nao rcss3d_nao
27+
ros2 topic pub --once /effectors/joint_stiffnesses nao_lola_command_msgs/msg/JointStiffnesses "{indexes: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], stiffnesses: [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}"
2828
```
2929

30-
Start inverse kinematics of robot:
30+
Start inverse kinematics on the robot:
3131
```
3232
ros2 run nao_ik nao_ik
3333
```
3434

35-
Start the phase provider:
35+
Start the phase provider on the robot:
3636
```
3737
ros2 run nao_phase_provider nao_phase_provider --ros-args -r fsr:=/sensors/fsr
3838
```
3939

40-
Make robot crouch with:
40+
Make robot crouch with (on your computer):
4141
```
4242
ros2 topic pub --once /motion/sole_poses biped_interfaces/msg/SolePoses "
4343
l_sole:
@@ -51,17 +51,17 @@ r_sole:
5151
"
5252
```
5353

54-
Start the walk node:
54+
Start the walk node on the robot:
5555
```
5656
ros2 run walk walk
5757
```
5858

59-
Start teleop to control the robot:
59+
Start teleop on your computer:
6060
```
6161
ros2 run teleop_twist_keyboard teleop_twist_keyboard --ros-args --remap cmd_vel:=target
6262
```
6363

64-
Start debugging with rqt using an layout for debugging the walk:
64+
Start debugging with rqt (on your computer) using an layout for debugging the walk:
6565
```
6666
rqt --perspective-file $(ros2 pkg prefix --share walk)/perspective/walk/walk.perspective
6767
```
@@ -72,3 +72,8 @@ To abort the walk immediately:
7272
```
7373
ros2 service call /abort std_srvs/srv/Empty
7474
```
75+
76+
To limp the robot:
77+
```
78+
ros2 topic pub --once /effectors/joint_stiffnesses nao_lola_command_msgs/msg/JointStiffnesses "{indexes: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], stiffnesses: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]}"
79+
```

0 commit comments

Comments
 (0)