from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal.RepeatedCapability import RepeatedCapability
from .... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class LfOutputCls:
"""LfOutput commands group definition. 31 total commands, 9 Subgroups, 0 group commands
Repeated Capability: LfOutput, default value after init: LfOutput.Nr1"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("lfOutput", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_lfOutput_get', 'repcap_lfOutput_set', repcap.LfOutput.Nr1)
def repcap_lfOutput_set(self, lfOutput: repcap.LfOutput) -> 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 LfOutput.Default
Default value after init: LfOutput.Nr1"""
self._cmd_group.set_repcap_enum_value(lfOutput)
def repcap_lfOutput_get(self) -> repcap.LfOutput:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def bandwidth(self):
"""bandwidth commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_bandwidth'):
from .Bandwidth import BandwidthCls
self._bandwidth = BandwidthCls(self._core, self._cmd_group)
return self._bandwidth
@property
def frequency(self):
"""frequency commands group. 0 Sub-classes, 5 commands."""
if not hasattr(self, '_frequency'):
from .Frequency import FrequencyCls
self._frequency = FrequencyCls(self._core, self._cmd_group)
return self._frequency
@property
def offset(self):
"""offset commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_offset'):
from .Offset import OffsetCls
self._offset = OffsetCls(self._core, self._cmd_group)
return self._offset
@property
def period(self):
"""period commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_period'):
from .Period import PeriodCls
self._period = PeriodCls(self._core, self._cmd_group)
return self._period
@property
def shape(self):
"""shape commands group. 3 Sub-classes, 1 commands."""
if not hasattr(self, '_shape'):
from .Shape import ShapeCls
self._shape = ShapeCls(self._core, self._cmd_group)
return self._shape
@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 sweep(self):
"""sweep commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_sweep'):
from .Sweep import SweepCls
self._sweep = SweepCls(self._core, self._cmd_group)
return self._sweep
@property
def voltage(self):
"""voltage commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_voltage'):
from .Voltage import VoltageCls
self._voltage = VoltageCls(self._core, self._cmd_group)
return self._voltage
@property
def state(self):
"""state commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_state'):
from .State import StateCls
self._state = StateCls(self._core, self._cmd_group)
return self._state
def clone(self) -> 'LfOutputCls':
"""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 = LfOutputCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group