aboutsummaryrefslogtreecommitdiff
path: root/qolab/hardware/scope
diff options
context:
space:
mode:
authorEugeniy E. Mikhailov <evgmik@gmail.com>2024-07-23 13:40:53 -0400
committerEugeniy E. Mikhailov <evgmik@gmail.com>2024-07-23 13:40:53 -0400
commit671cfbbd5b5b91986a69e9e0a639a6adce1e3956 (patch)
tree190834febfed0f2459e53812ac928d49c45a6789 /qolab/hardware/scope
parentfbd5d3b71cdc120c75c0f60737c4faf8d10ac4f2 (diff)
downloadqolab-671cfbbd5b5b91986a69e9e0a639a6adce1e3956.tar.gz
qolab-671cfbbd5b5b91986a69e9e0a639a6adce1e3956.zip
added screen divisions for a basic scope
Diffstat (limited to 'qolab/hardware/scope')
-rw-r--r--qolab/hardware/scope/_basic.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/qolab/hardware/scope/_basic.py b/qolab/hardware/scope/_basic.py
index b9020f1..4133c6e 100644
--- a/qolab/hardware/scope/_basic.py
+++ b/qolab/hardware/scope/_basic.py
@@ -58,6 +58,9 @@ class Scope(BasicInstrument):
Provide a minimal set of methods to be implemented by a scope.
"""
+ vertDivOnScreen = 8 # should be adjusted in hardware aware class
+ horizDivOnScreen = 8 # should be adjusted in hardware aware class
+
def __init__(self, *args, **kwds):
BasicInstrument.__init__(self, *args, **kwds)
self.config["Device type"] = "Scope"