Source code for qcodes.instrument_drivers.Keysight.Keysight_N5230C

from typing import TYPE_CHECKING

from . import N52xx

if TYPE_CHECKING:
    from typing_extensions import Unpack

    from qcodes.instrument import VisaInstrumentKWArgs


[docs] class KeysightN5230C(N52xx.PNABase): def __init__( self, name: str, address: str, **kwargs: "Unpack[VisaInstrumentKWArgs]" ): super().__init__( name, address, min_freq=300e3, max_freq=13.5e9, min_power=-90, max_power=13, nports=2, **kwargs )