aboutsummaryrefslogtreecommitdiff
path: root/scope/__init__.py
diff options
context:
space:
mode:
authorEugeniy E. Mikhailov <evgmik@gmail.com>2021-12-01 10:37:39 -0500
committerEugeniy E. Mikhailov <evgmik@gmail.com>2021-12-01 10:37:39 -0500
commitff6bfa21ca561472b0ab9e7820382c5d410eab5d (patch)
tree8f6382ed076fbd623bee8754ef3525a3ecce3667 /scope/__init__.py
parent62e8e882ba3ab5710d6ebd1bb927a585e7fe1583 (diff)
downloadqolab-ff6bfa21ca561472b0ab9e7820382c5d410eab5d.tar.gz
qolab-ff6bfa21ca561472b0ab9e7820382c5d410eab5d.zip
a deeper structure
Diffstat (limited to 'scope/__init__.py')
-rw-r--r--scope/__init__.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/scope/__init__.py b/scope/__init__.py
deleted file mode 100644
index e6b6573..0000000
--- a/scope/__init__.py
+++ /dev/null
@@ -1,22 +0,0 @@
-"""
-Provide basic class to operate scope
-Created by Eugeniy E. Mikhailov 2021/11/29
-"""
-import scpi
-
-class Scope(scpi.SCPIinstr):
- """
- Do not instantiate directly, use
- rm = pyvisa.ResourceManager()
- Scope(rm.open_resource('TCPIP::192.168.0.2::INSTR'))
- """
-
- # Minimal set of methods to be implemented by a scope.
- # Should work with minimal arguments list
- # but might be faster if parameters provided: less IO requests
-
- def getTrace(self, chNum, availableNpnts=None, maxRequiredPoints=None):
- warnings.warn( 'this function is not implemented' )
-
-from .sds1104x import SDS1104X
-