from pylab_ml.base_instrument import logger
from pylab_ml.scope.lecroy.base_lecroy import Lecroy, LecroyGenericScope
[docs]
class Wavesurfer(Lecroy):
""" Interface to LeCroy Wavesurfer Oscilloscopes. """
[docs]
def __init__(self, **kwargs):
super().__init__(**kwargs)
logger.debug("Class {}".format(self.__class__.__name__))
[docs]
class WavesurferLecroyGenericScope(LecroyGenericScope):
""" Interface to LeCroy Wavesurfer Generic Scopes. """
[docs]
def __init__(self, **kwargs):
super().__init__(**kwargs)
logger.debug("Class {}".format(self.__class__.__name__))