Closedown

This commit is contained in:
gac-x12sa
2023-01-05 12:16:04 +01:00
parent da21349113
commit 6ebac2b39a
3 changed files with 28 additions and 13 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ class Detector(DeviceBase):
pass
def start(self):
setState(State.Busy)
self.setState(State.Busy)
def stop(self):
setState(State.Ready)
self.setState(State.Ready)
def doClose(self):
pass
+2 -2
View File
@@ -6,10 +6,10 @@ class StdDaq(DeviceBase):
pass
def start(self):
setState(State.Busy)
self.setState(State.Busy)
def stop(self):
setState(State.Ready)
self.setState(State.Ready)
def doClose(self):
pass