[docs]classLevelCls:"""Level commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("level",core,parent)
[docs]defset(self,value:float)->None:"""SCPI: INPut:IQ:FULLscale[:LEVel] \n Snippet: driver.applications.k6Pulse.inputPy.iq.fullscale.level.set(value = 1.0) \n Defines the peak voltage at the Baseband Input connector if the full scale level is set to manual mode (see method RsFsw. Applications.K10x_Lte.InputPy.Iq.Fullscale.Auto.set) . \n :param value: 0.25 V | 0.5 V | 1 V | 2 V Peak voltage level at the connector. For probes, the possible full scale values are adapted according to the probe's attenuation and maximum allowed power. Unit: V """param=Conversions.decimal_value_to_str(value)self._core.io.write(f'INPut:IQ:FULLscale:LEVel {param}')
[docs]defget(self)->float:"""SCPI: INPut:IQ:FULLscale[:LEVel] \n Snippet: value: float = driver.applications.k6Pulse.inputPy.iq.fullscale.level.get() \n Defines the peak voltage at the Baseband Input connector if the full scale level is set to manual mode (see method RsFsw. Applications.K10x_Lte.InputPy.Iq.Fullscale.Auto.set) . \n :return: value: No help available"""response=self._core.io.query_str(f'INPut:IQ:FULLscale:LEVel?')returnConversions.str_to_float(response)