Source code for RsCmwBluetoothMeas.Implementations.DtMode.RxQuality.Search.Per

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class PerCls: """Per commands group definition. 13 total commands, 2 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("per", core, parent) @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 @property def lowEnergy(self): """lowEnergy commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_lowEnergy'): from .LowEnergy import LowEnergyCls self._lowEnergy = LowEnergyCls(self._core, self._cmd_group) return self._lowEnergy
[docs] def initiate(self, opc_timeout_ms: int = -1) -> None: """SCPI: INITiate:BLUetooth:MEASurement<Instance>:DTMode:RXQuality:SEARch:PER \n Snippet: driver.dtMode.rxQuality.search.per.initiate() \n No command help available \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'INITiate:BLUetooth:MEASurement<Instance>:DTMode:RXQuality:SEARch:PER', opc_timeout_ms)
[docs] def stop(self, opc_timeout_ms: int = -1) -> None: """SCPI: STOP:BLUetooth:MEASurement<Instance>:DTMode:RXQuality:SEARch:PER \n Snippet: driver.dtMode.rxQuality.search.per.stop() \n No command help available \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'STOP:BLUetooth:MEASurement<Instance>:DTMode:RXQuality:SEARch:PER', opc_timeout_ms)
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:BLUetooth:MEASurement<Instance>:DTMode:RXQuality:SEARch:PER \n Snippet: driver.dtMode.rxQuality.search.per.abort() \n No command help available \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'ABORt:BLUetooth:MEASurement<Instance>:DTMode:RXQuality:SEARch:PER', opc_timeout_ms)
def clone(self) -> 'PerCls': """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 = PerCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group