Skip to content

Commit 759997a

Browse files
authored
Fix YARP_DATA_DIRS and setGoal in readme (#166)
The configuration files are saved in the ``ICUBContrib`` folders. See https://github.com/robotology/walking-controllers/blob/56071b8ca640800667bb81b185c58307c7303ca7/src/WalkingModule/app/CMakeLists.txt#L45
1 parent 56071b8 commit 759997a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Notice: `sudo` is not necessary if you specify the `CMAKE_INSTALL_PREFIX`. In th
8888
```sh
8989
export WalkingControllers_INSTALL_DIR=/path/where/you/installed/
9090
export PATH=$PATH:$WalkingControllers_INSTALL_DIR/bin
91-
export YARP_DATA_DIRS=$YARP_DATA_DIRS:$WalkingControllers_INSTALL_DIR/share/yarp
91+
export YARP_DATA_DIRS=$YARP_DATA_DIRS:$WalkingControllers_INSTALL_DIR/share/ICUBcontrib
9292
```
9393

9494
# :computer: How to run the simulation
@@ -139,14 +139,14 @@ In order to run the simulation, the following additional dependency are required
139139
controller sending `startWalking` command;
140140
* `stopWalking`: the controller is stopped, in order to start again the
141141
controller you have to prepare again the robot.
142-
* `setGoal (x y)`: send the desired input to the planner. Send this command after `startWalking`.
142+
* `setGoal (x, y, k)`: send the desired input to the planner. Send this command after `startWalking`.
143143
144144
Example sequence:
145145
```
146146
prepareRobot
147147
startWalking
148-
setGoal (1.0, 0.0)
149-
setGoal (1.0, 0.0)
148+
setGoal (1.0, 0.0, 0.0)
149+
setGoal (1.0, 0.0, 0.0)
150150
stopWalking
151151
```
152152

0 commit comments

Comments
 (0)