Source code for RsCmwBluetoothSig.Implementations.Configure_.Connection_.PowerControl_.Ssize

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Ssize: """Ssize commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("ssize", core, parent)
[docs] def get_le_signaling(self) -> int: """SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PCONtrol:SSIZe:LESignaling \n Snippet: value: int = driver.configure.connection.powerControl.ssize.get_le_signaling() \n Sets the step size for increasing / decreasing the Tx power. \n :return: stepsize: numeric Range: 0 dB to 10 dB """ response = self._core.io.query_str('CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PCONtrol:SSIZe:LESignaling?') return Conversions.str_to_int(response)
[docs] def set_le_signaling(self, stepsize: int) -> None: """SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PCONtrol:SSIZe:LESignaling \n Snippet: driver.configure.connection.powerControl.ssize.set_le_signaling(stepsize = 1) \n Sets the step size for increasing / decreasing the Tx power. \n :param stepsize: numeric Range: 0 dB to 10 dB """ param = Conversions.decimal_value_to_str(stepsize) self._core.io.write(f'CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PCONtrol:SSIZe:LESignaling {param}')