Source code for RsSmcv.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
[docs] class DigitalCls: """Digital commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("digital", core, parent) @property def asetting(self): """asetting commands group. 0 Sub-classes, 1 commands.""" 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: """SCPI: [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. \n :return: bbin_dig_interface: DIGital| HSDin | HSDin HSDin Dig. IQ HS 1 """ 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: """SCPI: [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. \n :param bbin_dig_interface: DIGital| HSDin | HSDin HSDin Dig. IQ HS 1 """ 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