Script execution
This commit is contained in:
12
script/devices/Detector.py
Normal file
12
script/devices/Detector.py
Normal file
@@ -0,0 +1,12 @@
|
||||
class Detector(DeviceBase):
|
||||
def __init__(self, name):
|
||||
DeviceBase.__init__(self, name)
|
||||
|
||||
def start():
|
||||
print "startd"
|
||||
|
||||
def stop():
|
||||
print "stopd"
|
||||
|
||||
def doClose(self):
|
||||
DeviceBase.doClose(self)
|
||||
Reference in New Issue
Block a user