diff options
Diffstat (limited to 'qolab/hardware/scope/_basic.py')
-rw-r--r-- | qolab/hardware/scope/_basic.py | 3 |
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" |