From 0fd09e62d8e443c65d8769ac9d73a1f7bcc43005 Mon Sep 17 00:00:00 2001 From: gac-x12sa Date: Thu, 5 Jan 2023 11:34:11 +0100 Subject: [PATCH] Startup --- script/devices/StdDaq.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 script/devices/StdDaq.py diff --git a/script/devices/StdDaq.py b/script/devices/StdDaq.py new file mode 100644 index 0000000..f7c4954 --- /dev/null +++ b/script/devices/StdDaq.py @@ -0,0 +1,15 @@ +class StdDaq(DeviceBase): + def __init__(self, name): + DeviceBase.__init__(self, name) + + def doInitialize(self): + DeviceBase.doInitialize(self) + + def start(): + print "start" + + def stop(): + print "stop" + + def doClose(self): + DeviceBase.doClose(self)