Source code for RsSmw.Implementations.Source.Bb.Kuiper.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:KUIPer:TRIGger:[EXTernal]:DELay`` \n Snippet: ``value: float = driver.source.bb.kuiper.trigger.external.get_delay()`` \n Sets the trigger delay. :return: delay: float Range: 0 to 2147483647, Unit: samples """ response = self._core.io.query_str('SOURce<HwInstance>:BB:KUIPer:TRIGger:EXTernal:DELay?') return Conversions.str_to_float(response)
[docs] def get_inhibit(self) -> int: """ ``[SOURce<HW>]:BB:KUIPer:TRIGger:[EXTernal]:INHibit`` \n Snippet: ``value: int = driver.source.bb.kuiper.trigger.external.get_inhibit()`` \n Specifies the number of samples by which a restart is to be inhibited following an external trigger event. :return: inhibit: integer Range: 0 to 21.47``*clockRate`` """ response = self._core.io.query_str('SOURce<HwInstance>:BB:KUIPer:TRIGger:EXTernal:INHibit?') return Conversions.str_to_int(response)
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