Source code for RsSmbv.Implementations.Source.Bbin.Digital

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


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

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

	@property
	def asetting(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_asetting'):
			from .Asetting import AsettingCls
			self._asetting = AsettingCls(self._core, self._cmd_group)
		return self._asetting

	# noinspection PyTypeChecker
[docs] def get_interface(self) -> enums.BbinInterfaceMode: """ ``[SOURce<HW>]:BBIN:DIGital:INTerface`` \n Snippet: ``value: enums.BbinInterfaceMode = driver.source.bbin.digital.get_interface()`` \n Selects the input connector at that the signal is fed. :return: bbin_dig_interface: DIGital | HSDin | DIGital | HSDin DIN Dig I/Q HSDin HS Dig I/Q """ response = self._core.io.query_str('SOURce<HwInstance>:BBIN:DIGital:INTerface?') return Conversions.str_to_scalar_enum(response, enums.BbinInterfaceMode)
[docs] def set_interface(self, bbin_dig_interface: enums.BbinInterfaceMode) -> None: """ ``[SOURce<HW>]:BBIN:DIGital:INTerface`` \n Snippet: ``driver.source.bbin.digital.set_interface(bbin_dig_interface = enums.BbinInterfaceMode.DIGital)`` \n Selects the input connector at that the signal is fed. :param bbin_dig_interface: DIGital | HSDin | DIGital | HSDin DIN Dig I/Q HSDin HS Dig I/Q """ param = Conversions.enum_scalar_to_str(bbin_dig_interface, enums.BbinInterfaceMode) self._core.io.write(f'SOURce<HwInstance>:BBIN:DIGital:INTerface {param}')
def clone(self) -> 'DigitalCls': """ 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 = DigitalCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group