Files
x12sa-eiger/script/devices/Detector.py
gac-x12sa 0ca15f142f Closedown
2023-01-05 11:44:30 +01:00

15 lines
312 B
Python

class Detector(DeviceBase):
def __init__(self, name):
DeviceBase.__init__(self, name)
def doInitialize(self):
pass
def start():
setState(State.Busy)
def stop():
setState(State.Ready)
def doClose(self):
pass