The OpenWalker Project aims to fulfill the need for a standard walking controller architecture providing the minimal components required to generate stable walking on biped robots with planar feet. The project is based on ros_control and provides modules and templates for fast prototyping of balancing/walking controller components.
A description of all implemented algorithms and modules is available in the online documentation.
real.mp4
sim.mp4
We release a Docker image that can directly be used with VS Code Dev Containers to develop and run the project.
docker pull ghcr.io/tum-ics/ow_docker:melodic-reemc-devel-vscode2. Clone this repository and start the devcontainer
If the nvidia-container-toolkit is not used, edit devcontainer.json and remove --runtime=nvidia
git clone --recursive https://github.com/TUM-ICS/openwalker.git
cd openwalker && code .source /opt/pal/setup.bash
catkin build -DCATKIN_ENABLE_TESTING=0 -DCMAKE_BUILD_TYPE=ReleaseAlternatively, the project can also be installed on an Ubuntu 18.04 machine.
- Ubuntu 18.04 / Ros Melodic
- Compiler supporting C++11
git clone --recursive https://github.com/TUM-ICS/openwalker.git
cd openwalker && source /opt/ros/melodic/setup.bash./doc/install/install.shrosinstall src/reemc /opt/ros/melodic doc/install/melodic.rosinstallsudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src --rosdistro melodic -y --skip-keys="opencv2 pal_laser_filters speed_limit_node sensor_to_cloud hokuyo_node libdw-dev gmock walking_utils rqt_current_limit_controller simple_grasping_action reemc_init_offset_controller walking_controller"catkin build -DCATKIN_ENABLE_TESTING=0 -DCMAKE_BUILD_TYPE=ReleaseThe following demo generates dynamic walking for the humanoid robot REEM-C of PAL Robotics. It uses Gazebo for the physics simulation and Rviz for visualization. The robot can execute predefined foot-step plans or be controlled with a joystick by a user.
For Docker users, this readme describes how to connect terminals with the container.
source devel/setup.bash
roslaunch ow_reemc gazebo.launchsource devel/setup.bash
roslaunch ow_reemc sim.launchsource devel/setup.bash
# Step in place.
rosservice call /open_walker/plan_fixed_stamp
# Walk in a straight line.
rosservice call /open_walker/plan_fixed_line
# Walk to the side
rosservice call /open_walker/plan_fixed_sidestep_left
rosservice call /open_walker/plan_fixed_sidestep_right
# Walk in circles.
rosservice call /open_walker/plan_fixed_circle_right
rosservice call /open_walker/plan_fixed_circle_left
# Generic plan with 20 steps of 0.2 m length and 0.1 rad angle
rosservice call /open_walker/plan_fixed "n_steps:
data: 20
length:
data: 0.2
lateral:
data: 0.0
angle:
data: 0.1"OpenWalker was developed by Emmanuel Dean, Florian Bergner, Rogelio Guadarrama-Olvera, Simon Armleder, and Gordon Cheng from the Institute for Cognitive Systems (ICS), Technical University of Munich, Germany.
This project has received funding from the European Union‘s Horizon 2020 research and innovation programme under grant agreement No 732287.

