Source code for RsSmbv.Implementations.System.Time.HrTimer

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class HrTimerCls: """HrTimer commands group definition. 3 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("hrTimer", core, parent) @property def absolute(self): """absolute commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_absolute'): from .Absolute import AbsoluteCls self._absolute = AbsoluteCls(self._core, self._cmd_group) return self._absolute
[docs] def set_relative(self, pseudo_string: str) -> None: """SCPI: SYSTem:TIME:HRTimer:RELative \n Snippet: driver.system.time.hrTimer.set_relative(pseudo_string = 'abc') \n No command help available \n :param pseudo_string: No help available """ param = Conversions.value_to_quoted_str(pseudo_string) self._core.io.write(f'SYSTem:TIME:HRTimer:RELative {param}')
def clone(self) -> 'HrTimerCls': """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 = HrTimerCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group