Source code for RsCmwBluetoothSig.Implementations.Call_.Connection

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Connection: """Connection commands group definition. 4 total commands, 2 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("connection", core, parent) @property def check(self): """check commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_check'): from .Connection_.Check import Check self._check = Check(self._core, self._base) return self._check @property def action(self): """action commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_action'): from .Connection_.Action import Action self._action = Action(self._core, self._base) return self._action
[docs] def get_aconnect(self) -> bool: """SCPI: CALL:BLUetooth:SIGNaling<instance>:CONNection:ACONnect \n Snippet: value: bool = driver.call.connection.get_aconnect() \n No command help available \n :return: auto_ranging: No help available """ response = self._core.io.query_str('CALL:BLUetooth:SIGNaling<Instance>:CONNection:ACONnect?') return Conversions.str_to_bool(response)
[docs] def set_aconnect(self, auto_ranging: bool) -> None: """SCPI: CALL:BLUetooth:SIGNaling<instance>:CONNection:ACONnect \n Snippet: driver.call.connection.set_aconnect(auto_ranging = False) \n No command help available \n :param auto_ranging: No help available """ param = Conversions.bool_to_str(auto_ranging) self._core.io.write(f'CALL:BLUetooth:SIGNaling<Instance>:CONNection:ACONnect {param}')
def clone(self) -> 'Connection': """Clones the group by creating new object from it and its whole existing sub-groups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = Connection(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group