19 lines
311 B
Python
19 lines
311 B
Python
def move_park():
|
|
"""
|
|
"""
|
|
print "move_park"
|
|
|
|
#Initial checks
|
|
robot.assert_no_task()
|
|
robot.reset_motion()
|
|
robot.wait_ready()
|
|
#robot.assert_cleared()
|
|
#robot.assert_in_known_point()
|
|
|
|
#Enabling
|
|
enable_motion()
|
|
|
|
|
|
if not robot.is_park():
|
|
robot.move_park()
|