Skip to content

Commit

Permalink
move visualize navigation goals to cob_helper_tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Weisshardt committed May 31, 2017
1 parent c243b00 commit f3c841b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions cob_helper_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ install(PROGRAMS
scripts/auto_recover.py
scripts/fake_diagnostics.py
scripts/fake_driver.py
scripts/visualize_navigation_goals.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
2 changes: 2 additions & 0 deletions cob_helper_tools/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@
<exec_depend>cob_script_server</exec_depend>
<exec_depend>diagnostic_msgs</exec_depend>
<exec_depend>rospy</exec_depend>
<exec_depend>tf</exec_depend>
<exec_depend>visualization_msgs</exec_depend>

</package>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import tf
from visualization_msgs.msg import Marker
from visualization_msgs.msg import MarkerArray
from geometry_msgs.msg import Point

class VisualizerNavigationGoals():
def __init__(self):
Expand Down Expand Up @@ -80,4 +79,7 @@ def pubMarker(self):
r = rospy.Rate(1)
while not rospy.is_shutdown():
p.pubMarker()
r.sleep()
try:
r.sleep()
except rospy.exceptions.ROSInterruptException as e:
pass

0 comments on commit f3c841b

Please sign in to comment.