Files
bernina_robot/script/motion/tweak.py
gobbo_a 8e14004e1a
2023-02-01 16:47:56 +01:00

37 lines
588 B
Python

def tweak_x(offset):
"""
"""
print "tweak_x", offset
#Initial checks
robot.assert_no_task()
robot.reset_motion()
robot.wait_ready()
#robot.assert_cleared()
#robot.assert_in_known_point()
#Enabling
enable_motion()
robot.tweak_x(offset)
def tweak_y(offset):
"""
"""
print "tweak_y", offset
#Initial checks
robot.assert_no_task()
robot.reset_motion()
robot.wait_ready()
#robot.assert_cleared()
#robot.assert_in_known_point()
#Enabling
enable_motion()
robot.tweak_y(offset)