from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AdjustCls:
"""Adjust commands group definition. 13 total commands, 6 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("adjust", core, parent)
@property
def configure(self):
"""configure commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_configure'):
from .Configure import ConfigureCls
self._configure = ConfigureCls(self._core, self._cmd_group)
return self._configure
@property
def evm(self):
"""evm commands group. 1 Sub-classes, 1 commands."""
if not hasattr(self, '_evm'):
from .Evm import EvmCls
self._evm = EvmCls(self._core, self._cmd_group)
return self._evm
@property
def frequency(self):
"""frequency commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_frequency'):
from .Frequency import FrequencyCls
self._frequency = FrequencyCls(self._core, self._cmd_group)
return self._frequency
@property
def level(self):
"""level commands group. 1 Sub-classes, 1 commands."""
if not hasattr(self, '_level'):
from .Level import LevelCls
self._level = LevelCls(self._core, self._cmd_group)
return self._level
@property
def demod(self):
"""demod commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_demod'):
from .Demod import DemodCls
self._demod = DemodCls(self._core, self._cmd_group)
return self._demod
@property
def ncancel(self):
"""ncancel commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_ncancel'):
from .Ncancel import NcancelCls
self._ncancel = NcancelCls(self._core, self._cmd_group)
return self._ncancel
def clone(self) -> 'AdjustCls':
"""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 = AdjustCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group