Go to the documentation of this file.00001
00002
00003 """
00004 this is example file for SampleRobot robot
00005
00006 $ roslaunch hrpsys samplerobot.launch CONTROLLER_PERIOD:=200
00007 $ rosrun hrpsys samplerobot-impedance-controller.py
00008
00009 """
00010
00011 import imp, sys, os
00012
00013
00014 try:
00015 imp.find_module('hrpsys')
00016 sys.path.append(imp.find_module('hrpsys')[1])
00017 except:
00018 import roslib
00019 roslib.load_manifest('hrpsys')
00020
00021 sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../share/hrpsys/samples/SampleRobot/')
00022
00023 import samplerobot_impedance_controller
00024
00025 if __name__ == '__main__':
00026 samplerobot_impedance_controller.demo()
00027
00028
00029 if [s for s in sys.argv if "--gtest_output=xml:" in s] :
00030 import unittest, rostest
00031 rostest.run('hrpsys', 'samplerobot_impedance_controller', unittest.TestCase, sys.argv)
00032
00033
00034
00035
00036
00037