Source code for RsCmwBluetoothMeas.Implementations.Configure.MultiEval.Limit.LowEnergy

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class LowEnergyCls: """LowEnergy commands group definition. 35 total commands, 7 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("lowEnergy", core, parent) @property def lrange(self): """lrange commands group. 8 Sub-classes, 1 commands.""" if not hasattr(self, '_lrange'): from .Lrange import LrangeCls self._lrange = LrangeCls(self._core, self._cmd_group) return self._lrange @property def le2M(self): """le2M commands group. 9 Sub-classes, 1 commands.""" if not hasattr(self, '_le2M'): from .Le2M import Le2MCls self._le2M = Le2MCls(self._core, self._cmd_group) return self._le2M @property def le1M(self): """le1M commands group. 5 Sub-classes, 1 commands.""" if not hasattr(self, '_le1M'): from .Le1M import Le1MCls self._le1M = Le1MCls(self._core, self._cmd_group) return self._le1M @property def delta(self): """delta commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_delta'): from .Delta import DeltaCls self._delta = DeltaCls(self._core, self._cmd_group) return self._delta @property def daverage(self): """daverage commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_daverage'): from .Daverage import DaverageCls self._daverage = DaverageCls(self._core, self._cmd_group) return self._daverage @property def dminimum(self): """dminimum commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_dminimum'): from .Dminimum import DminimumCls self._dminimum = DminimumCls(self._core, self._cmd_group) return self._dminimum @property def dmaximum(self): """dmaximum commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_dmaximum'): from .Dmaximum import DmaximumCls self._dmaximum = DmaximumCls(self._core, self._cmd_group) return self._dmaximum def clone(self) -> 'LowEnergyCls': """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 = LowEnergyCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group