diff options
Diffstat (limited to 'hardware/scope/sds1104x.py')
-rw-r--r-- | hardware/scope/sds1104x.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hardware/scope/sds1104x.py b/hardware/scope/sds1104x.py index 53e945a..23ac1be 100644 --- a/hardware/scope/sds1104x.py +++ b/hardware/scope/sds1104x.py @@ -3,19 +3,19 @@ Provide basic class to operate scope Created by Eugeniy E. Mikhailov 2021/11/29 """ -from hardware.scope import Scope +from hardware.scope import ScopeSCPI from datatrace import DataTrace import re import numpy as np -class SDS1104X(Scope): +class SDS1104X(ScopeSCPI): """ Siglent SDS1104x scope """ vertDivOnScreen = 10 horizDivOnScreen = 14 - numberOfChannels = 4 def __init__(self, resource): super().__init__(resource) self.resource.read_termination='\n' + self.numberOfChannels = 4 self.maxRequiredPoints = 1000; # desired number of points per channel, can return twice more def response2numStr(self, strIn, firstSeparator=None, unit=None): |