Source code for RsCmwBluetoothMeas.Implementations.MultiEval.Modulation.LowEnergy.Lrange

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class LrangeCls: """Lrange commands group definition. 24 total commands, 8 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("lrange", core, parent) @property def xmaximum(self): """xmaximum commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_xmaximum'): from .Xmaximum import XmaximumCls self._xmaximum = XmaximumCls(self._core, self._cmd_group) return self._xmaximum @property def xminimum(self): """xminimum commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_xminimum'): from .Xminimum import XminimumCls self._xminimum = XminimumCls(self._core, self._cmd_group) return self._xminimum @property def maximum(self): """maximum commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_maximum'): from .Maximum import MaximumCls self._maximum = MaximumCls(self._core, self._cmd_group) return self._maximum @property def minimum(self): """minimum commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_minimum'): from .Minimum import MinimumCls self._minimum = MinimumCls(self._core, self._cmd_group) return self._minimum @property def current(self): """current commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_current'): from .Current import CurrentCls self._current = CurrentCls(self._core, self._cmd_group) return self._current @property def average(self): """average commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_average'): from .Average import AverageCls self._average = AverageCls(self._core, self._cmd_group) return self._average @property def standardDev(self): """standardDev commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_standardDev'): from .StandardDev import StandardDevCls self._standardDev = StandardDevCls(self._core, self._cmd_group) return self._standardDev @property def stDev(self): """stDev commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_stDev'): from .StDev import StDevCls self._stDev = StDevCls(self._core, self._cmd_group) return self._stDev def clone(self) -> 'LrangeCls': """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 = LrangeCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group