Source code for RsFsw.Implementations.Applications.K14x_Nr5G.Trigger.Sequence.BbPower.Holdoff

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class HoldoffCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("holdoff", core, parent)

[docs] def set(self, period: float) -> None: """ ``TRIGger[:SEQuence]:BBPower:HOLDoff`` \n Snippet: ``driver.applications.k14Xnr5G.trigger.sequence.bbPower.holdoff.set(period = 1.0)`` \n Defines the holding time before the baseband power trigger event. The command requires the optional 'Digital Baseband' interface or the optional 'Analog Baseband' interface. Note that this command is maintained for compatibility reasons only. Use the method ``RsFsw.applications.k10Xlte.trigger.sequence.ifPower.holdoff.set()`` command for new remote control programs. :param period: Range: 150 ns to 1000 s, Unit: S """ param = Conversions.decimal_value_to_str(period) self._core.io.write(f'TRIGger:SEQuence:BBPower:HOLDoff {param}')
[docs] def get(self) -> float: """ ``TRIGger[:SEQuence]:BBPower:HOLDoff`` \n Snippet: ``value: float = driver.applications.k14Xnr5G.trigger.sequence.bbPower.holdoff.get()`` \n Defines the holding time before the baseband power trigger event. The command requires the optional 'Digital Baseband' interface or the optional 'Analog Baseband' interface. Note that this command is maintained for compatibility reasons only. Use the method ``RsFsw.applications.k10Xlte.trigger.sequence.ifPower.holdoff.set()`` command for new remote control programs. :return: period: Range: 150 ns to 1000 s, Unit: S """ response = self._core.io.query_str(f'TRIGger:SEQuence:BBPower:HOLDoff?') return Conversions.str_to_float(response)