Source code for RsSmw.Implementations.Source.Bb.Nfc.Trigger.External

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ExternalCls:
	"""
	| Commands in total: 3
	| Subgroups: 1
	| Direct child commands: 2
	"""

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

	@property
	def synchronize(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_synchronize'):
			from .Synchronize import SynchronizeCls
			self._synchronize = SynchronizeCls(self._core, self._cmd_group)
		return self._synchronize

[docs] def get_delay(self) -> float: """ ``[SOURce<HW>]:BB:NFC:TRIGger:[EXTernal]:DELay`` \n Snippet: ``value: float = driver.source.bb.nfc.trigger.external.get_delay()`` \n Sets the trigger signal delay in samples on external triggering or on internal triggering via the second path (if applicable) . The numeric suffix to EXTernal distinguishes between the external trigger via the multipurpose connectors. :return: delay: float Range: 0 to 65535 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NFC:TRIGger:EXTernal:DELay?') return Conversions.str_to_float(response)
[docs] def set_delay(self, delay: float) -> None: """ ``[SOURce<HW>]:BB:NFC:TRIGger:[EXTernal]:DELay`` \n Snippet: ``driver.source.bb.nfc.trigger.external.set_delay(delay = 1.0)`` \n Sets the trigger signal delay in samples on external triggering or on internal triggering via the second path (if applicable) . The numeric suffix to EXTernal distinguishes between the external trigger via the multipurpose connectors. :param delay: float Range: 0 to 65535 """ param = Conversions.decimal_value_to_str(delay) self._core.io.write(f'SOURce<HwInstance>:BB:NFC:TRIGger:EXTernal:DELay {param}')
[docs] def get_inhibit(self) -> int: """ ``[SOURce<HW>]:BB:NFC:TRIGger:[EXTernal]:INHibit`` \n Snippet: ``value: int = driver.source.bb.nfc.trigger.external.get_inhibit()`` \n Sets the duration for inhibiting a new trigger event subsequent to triggering. The input is to be expressed in samples. :return: inhibit: integer Range: 0 to 67108863 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NFC:TRIGger:EXTernal:INHibit?') return Conversions.str_to_int(response)
[docs] def set_inhibit(self, inhibit: int) -> None: """ ``[SOURce<HW>]:BB:NFC:TRIGger:[EXTernal]:INHibit`` \n Snippet: ``driver.source.bb.nfc.trigger.external.set_inhibit(inhibit = 1)`` \n Sets the duration for inhibiting a new trigger event subsequent to triggering. The input is to be expressed in samples. :param inhibit: integer Range: 0 to 67108863 """ param = Conversions.decimal_value_to_str(inhibit) self._core.io.write(f'SOURce<HwInstance>:BB:NFC:TRIGger:EXTernal:INHibit {param}')
def clone(self) -> 'ExternalCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = ExternalCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group