Files
bernina_robot/script/client/test.py
gac-bernina 681e3d76bf
2023-09-14 11:48:21 +02:00

14 lines
273 B
Python

from BerninaRobotClient import BerninaRobotClient
brc = BerninaRobotClient("http://saresb-cons-01.psi.ch:8080")
brc.print_info()
print brc.move_park()
print brc.move_home()
print brc.tweak_x(5)
print brc.move_park(wait=False)
brc.abort_cmd()
print brc.move_home()