Source code for qcodes.instrument_drivers.Keysight.Keysight_N5183B

from typing import TYPE_CHECKING

from qcodes.instrument_drivers.Keysight.N51x1 import KeysightN51x1

if TYPE_CHECKING:
    from typing import Unpack

    from qcodes.instrument import VisaInstrumentKWArgs


[docs] class KeysightN5183B(KeysightN51x1): def __init__( self, name: str, address: str, **kwargs: "Unpack[VisaInstrumentKWArgs]" ): super().__init__(name, address, min_power=-20, max_power=19, **kwargs)