Files
mxsc/script/motion/trash.py
gac-S_Changer b75f7d0ac8
2018-10-17 11:44:20 +02:00

27 lines
525 B
Python

def trash():
"""
"""
print "trash"
#Initial checks
robot.assert_no_task()
robot.reset_motion()
robot.wait_ready()
robot.assert_cleared()
#robot.assert_in_known_point()
#Enabling
enable_motion()
robot.move_heater(to_bottom = False)
robot.move_heater(to_bottom = True)
for i in range(3):
robot.open_tool()
time.sleep(1.0)
robot.close_tool()
robot.move_heater(to_bottom = False)
robot.move_home()