Files
x11ma/script/devices/chopper.py
gac-x11ma e7b60c995b
2020-01-14 17:14:16 +01:00

10 lines
223 B
Python

def put_chopper(v):
#0 : "closed"
#1 : "opened"
caput("X11MA-ES1-CHOPP:TRG",1 if v else 0)
def get_chopper():
#0 : "closed"
#1 : "opened"
return True if caget("X11MA-ES1-CHOPP:TRG") else False