Source code for RsCma.Implementations.Source.AfRf.Generator.Digital

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.Utilities import trim_str_response


# 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 rf(self): """rf commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_rf'): from .Rf import RfCls self._rf = RfCls(self._core, self._cmd_group) return self._rf
[docs] def get_file(self) -> str: """SCPI: SOURce:AFRF:GENerator<Instance>:DIGital:FILE \n Snippet: value: str = driver.source.afRf.generator.digital.get_file() \n No command help available \n :return: arb_file: No help available """ response = self._core.io.query_str_with_opc('SOURce:AFRF:GENerator<Instance>:DIGital:FILE?') return trim_str_response(response)
[docs] def set_file(self, arb_file: str) -> None: """SCPI: SOURce:AFRF:GENerator<Instance>:DIGital:FILE \n Snippet: driver.source.afRf.generator.digital.set_file(arb_file = '1') \n No command help available \n :param arb_file: No help available """ param = Conversions.value_to_quoted_str(arb_file) self._core.io.write_with_opc(f'SOURce:AFRF:GENerator<Instance>:DIGital:FILE {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