Source code for RsCma.Implementations.Configure.AfRf.Measurement.AudioOutput

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AudioOutputCls: """AudioOutput commands group definition. 5 total commands, 5 Subgroups, 0 group commands Repeated Capability: AudioOutput, default value after init: AudioOutput.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("audioOutput", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_audioOutput_get', 'repcap_audioOutput_set', repcap.AudioOutput.Nr1) def repcap_audioOutput_set(self, audioOutput: repcap.AudioOutput) -> 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 AudioOutput.Default Default value after init: AudioOutput.Nr1""" self._cmd_group.set_repcap_enum_value(audioOutput) def repcap_audioOutput_get(self) -> repcap.AudioOutput: """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 source(self): """source commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_source'): from .Source import SourceCls self._source = SourceCls(self._core, self._cmd_group) return self._source @property def level(self): """level commands group. 0 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 first(self): """first commands group. 0 Sub-classes, 1 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. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_second'): from .Second import SecondCls self._second = SecondCls(self._core, self._cmd_group) return self._second def clone(self) -> 'AudioOutputCls': """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 = AudioOutputCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group