from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SenseCls:
"""Sense commands group definition. 348 total commands, 20 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("sense", core, parent)
@property
def adjust(self):
"""adjust commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_adjust'):
from .Adjust import AdjustCls
self._adjust = AdjustCls(self._core, self._cmd_group)
return self._adjust
@property
def bandwidth(self):
"""bandwidth commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_bandwidth'):
from .Bandwidth import BandwidthCls
self._bandwidth = BandwidthCls(self._core, self._cmd_group)
return self._bandwidth
@property
def correction(self):
"""correction commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_correction'):
from .Correction import CorrectionCls
self._correction = CorrectionCls(self._core, self._cmd_group)
return self._correction
@property
def frequency(self):
"""frequency commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_frequency'):
from .Frequency import FrequencyCls
self._frequency = FrequencyCls(self._core, self._cmd_group)
return self._frequency
@property
def iq(self):
"""iq commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_iq'):
from .Iq import IqCls
self._iq = IqCls(self._core, self._cmd_group)
return self._iq
@property
def mixer(self):
"""mixer commands group. 10 Sub-classes, 0 commands."""
if not hasattr(self, '_mixer'):
from .Mixer import MixerCls
self._mixer = MixerCls(self._core, self._cmd_group)
return self._mixer
@property
def probe(self):
"""probe commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_probe'):
from .Probe import ProbeCls
self._probe = ProbeCls(self._core, self._cmd_group)
return self._probe
@property
def msra(self):
"""msra commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_msra'):
from .Msra import MsraCls
self._msra = MsraCls(self._core, self._cmd_group)
return self._msra
@property
def rtms(self):
"""rtms commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_rtms'):
from .Rtms import RtmsCls
self._rtms = RtmsCls(self._core, self._cmd_group)
return self._rtms
@property
def sweep(self):
"""sweep commands group. 2 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 signal(self):
"""signal commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_signal'):
from .Signal import SignalCls
self._signal = SignalCls(self._core, self._cmd_group)
return self._signal
@property
def measure(self):
"""measure commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_measure'):
from .Measure import MeasureCls
self._measure = MeasureCls(self._core, self._cmd_group)
return self._measure
@property
def statistic(self):
"""statistic commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_statistic'):
from .Statistic import StatisticCls
self._statistic = StatisticCls(self._core, self._cmd_group)
return self._statistic
@property
def mtime(self):
"""mtime commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_mtime'):
from .Mtime import MtimeCls
self._mtime = MtimeCls(self._core, self._cmd_group)
return self._mtime
@property
def rlength(self):
"""rlength commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rlength'):
from .Rlength import RlengthCls
self._rlength = RlengthCls(self._core, self._cmd_group)
return self._rlength
@property
def symbolRate(self):
"""symbolRate commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_symbolRate'):
from .SymbolRate import SymbolRateCls
self._symbolRate = SymbolRateCls(self._core, self._cmd_group)
return self._symbolRate
@property
def window(self):
"""window commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_window'):
from .Window import WindowCls
self._window = WindowCls(self._core, self._cmd_group)
return self._window
@property
def demod(self):
"""demod commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_demod'):
from .Demod import DemodCls
self._demod = DemodCls(self._core, self._cmd_group)
return self._demod
@property
def hop(self):
"""hop commands group. 9 Sub-classes, 0 commands."""
if not hasattr(self, '_hop'):
from .Hop import HopCls
self._hop = HopCls(self._core, self._cmd_group)
return self._hop
@property
def chirp(self):
"""chirp commands group. 9 Sub-classes, 0 commands."""
if not hasattr(self, '_chirp'):
from .Chirp import ChirpCls
self._chirp = ChirpCls(self._core, self._cmd_group)
return self._chirp
def clone(self) -> 'SenseCls':
"""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 = SenseCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group