Diferencia entre revisiones de «OpenMR: Modular Robots plug-in for Openrave»

De WikiRobotics
Saltar a: navegación, buscar
(Installation and setup)
(Installation and setup)
Línea 5: Línea 5:
 
== Installation and setup ==
 
== Installation and setup ==
 
* Install OpenRave: [http://openrave.programmingvision.com/index.php/Installation:OpenRAVE Instructions]
 
* Install OpenRave: [http://openrave.programmingvision.com/index.php/Installation:OpenRAVE Instructions]
 +
 +
=== Plugin ===
 
* Checkout the OpenMR sources:
 
* Checkout the OpenMR sources:
 +
svn co http://svn.iearobotics.com/openmr/trunk  openmr
 +
* Change to the openmr/plugin folder:
 +
'''cd openmr/plugin'''
 +
* Execute cmake:
 +
'''cmake .'''
 +
If you get the following error message:
 +
"CMake Error at CMakeLists.txt:7 (message):
 +
  could not find openrave, check for openrave-config in path<br>
 +
-- Configuring incomplete, errors occurred!"
 +
 +
make sure you have the openrave and openrave-config files in the PATH. For example, in my system i should configure the path like this:
 +
export PATH=$PATH:/home/juan/desarrollo/openrave/localinstall/bin
 +
 +
* Compile the plugin:
 +
'''make'''
  
 
== Repository ==
 
== Repository ==

Revisión del 08:54 8 mar 2010

Simulating the locomotion of the Minicube-I modular robot

Introduction

OpenMR is an OpenRave Modular Robots plug-in for simulating the locomotion of modular robots.

Installation and setup

Plugin

  • Checkout the OpenMR sources:
svn co http://svn.iearobotics.com/openmr/trunk  openmr
  • Change to the openmr/plugin folder:
cd openmr/plugin
  • Execute cmake:
cmake .

If you get the following error message:

"CMake Error at CMakeLists.txt:7 (message):
 could not find openrave, check for openrave-config in path
-- Configuring incomplete, errors occurred!"

make sure you have the openrave and openrave-config files in the PATH. For example, in my system i should configure the path like this:

export PATH=$PATH:/home/juan/desarrollo/openrave/localinstall/bin
  • Compile the plugin:
make

Repository

svn co http://svn.iearobotics.com/openmr/trunk  openmr

License

150px This code is under the GPLv3 license

Author

Juan Gonzalez-Gomez

Links

News

  • 2010/03/08: This page is started