from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AqPskCls:
"""AqPsk commands group definition. 3 total commands, 2 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("aqPsk", core, parent)
@property
def angle(self):
"""angle commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_angle'):
from .Angle import AngleCls
self._angle = AngleCls(self._core, self._cmd_group)
return self._angle
@property
def scpir(self):
"""scpir commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_scpir'):
from .Scpir import ScpirCls
self._scpir = ScpirCls(self._core, self._cmd_group)
return self._scpir
# noinspection PyTypeChecker
def clone(self) -> 'AqPskCls':
"""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 = AqPskCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group