Source code for qcodes.instrument_drivers.tektronix.Tektronix_70001A

from typing import Any

from .AWG70000A import AWG70000A


[docs] class TektronixAWG70001A(AWG70000A): """ The QCoDeS driver for Tektronix AWG70001A series AWG's. All the actual driver meat is in the superclass AWG70000A. """ def __init__( self, name: str, address: str, timeout: float = 10, **kwargs: Any ) -> None: """ Args: name: The name used internally by QCoDeS in the DataSet address: The VISA resource name of the instrument timeout: The VISA timeout time (in seconds). **kwargs: kwargs are forwarded to base class. """ super().__init__(name, address, num_channels=2, timeout=timeout, **kwargs)