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

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.RepeatedCapability import RepeatedCapability
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class InternalGeneratorCls: """InternalGenerator commands group definition. 20 total commands, 10 Subgroups, 0 group commands Repeated Capability: InternalGen, default value after init: InternalGen.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("internalGenerator", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_internalGen_get', 'repcap_internalGen_set', repcap.InternalGen.Nr1) def repcap_internalGen_set(self, internalGen: repcap.InternalGen) -> None: """Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to InternalGen.Default Default value after init: InternalGen.Nr1""" self._cmd_group.set_repcap_enum_value(internalGen) def repcap_internalGen_get(self) -> repcap.InternalGen: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def enable(self): """enable commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_enable'): from .Enable import EnableCls self._enable = EnableCls(self._core, self._cmd_group) return self._enable @property def tmode(self): """tmode commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_tmode'): from .Tmode import TmodeCls self._tmode = TmodeCls(self._core, self._cmd_group) return self._tmode @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 dtone(self): """dtone commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_dtone'): from .Dtone import DtoneCls self._dtone = DtoneCls(self._core, self._cmd_group) return self._dtone @property def multiTone(self): """multiTone commands group. 7 Sub-classes, 0 commands.""" if not hasattr(self, '_multiTone'): from .MultiTone import MultiToneCls self._multiTone = MultiToneCls(self._core, self._cmd_group) return self._multiTone @property def first(self): """first commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_first'): from .First import FirstCls self._first = FirstCls(self._core, self._cmd_group) return self._first @property def second(self): """second commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_second'): from .Second import SecondCls self._second = SecondCls(self._core, self._cmd_group) return self._second @property def third(self): """third commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_third'): from .Third import ThirdCls self._third = ThirdCls(self._core, self._cmd_group) return self._third @property def fourth(self): """fourth commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_fourth'): from .Fourth import FourthCls self._fourth = FourthCls(self._core, self._cmd_group) return self._fourth @property def dialing(self): """dialing commands group. 1 Sub-classes, 2 commands.""" if not hasattr(self, '_dialing'): from .Dialing import DialingCls self._dialing = DialingCls(self._core, self._cmd_group) return self._dialing def clone(self) -> 'InternalGeneratorCls': """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 = InternalGeneratorCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group