Skip to content

Commit

Permalink
add hero as a robot
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsJanssenTUe committed Mar 19, 2019
1 parent c0144a6 commit f67e837
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action_server/src/action_server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
from robot_skills.amigo import Amigo as Robot
elif robot_name == 'sergio':
from robot_skills.sergio import Sergio as Robot
elif robot_name == 'hero':
from robot_skills.hero import Hero as Robot
else:
rospy.logerr("'robot_name' must be either 'amigo' or 'sergio'")
rospy.logerr("'robot_name' must be either 'amigo', 'hero, or 'sergio'")
sys.exit()

robot = Robot()
Expand Down

0 comments on commit f67e837

Please sign in to comment.