[docs]classRfPowerCls:"""RfPower commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("rfPower",core,parent)
[docs]defset(self,level:float)->None:"""SCPI: TRIGger[:SEQuence]:LEVel:RFPower \n Snippet: driver.applications.k149Uwb.trigger.sequence.level.rfPower.set(level = 1.0) \n Defines the power level the RF input must exceed to cause a trigger event. Note that any RF attenuation or preamplification is considered when the trigger level is analyzed. If defined, a reference level offset is also considered. The input signal must be between 500 MHz and 8 GHz. \n :param level: For details on available trigger levels and trigger bandwidths, see the specifications document. Unit: DBM """param=Conversions.decimal_value_to_str(level)self._core.io.write(f'TRIGger:SEQuence:LEVel:RFPower {param}')
[docs]defget(self)->float:"""SCPI: TRIGger[:SEQuence]:LEVel:RFPower \n Snippet: value: float = driver.applications.k149Uwb.trigger.sequence.level.rfPower.get() \n Defines the power level the RF input must exceed to cause a trigger event. Note that any RF attenuation or preamplification is considered when the trigger level is analyzed. If defined, a reference level offset is also considered. The input signal must be between 500 MHz and 8 GHz. \n :return: level: No help available"""response=self._core.io.query_str(f'TRIGger:SEQuence:LEVel:RFPower?')returnConversions.str_to_float(response)