auto_tools.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 import rospy
4 from cob_auto_tools.auto_init import AutoInit
5 from cob_auto_tools.auto_recover import AutoRecover
6 
7 if __name__ == "__main__":
8  rospy.init_node("auto_tools")
9  rospy.loginfo("auto_tools running")
10 
11  if rospy.get_param('~enable_auto_init', True):
12  AI = AutoInit()
13 
14  if rospy.get_param('~enable_auto_recover', True):
15  AR = AutoRecover()
16 
17  rospy.spin()


cob_helper_tools
Author(s): Felix Messmer
autogenerated on Tue May 2 2023 02:26:07