from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ValueCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("value", core, parent)
[docs]
def get(self, offsetNull=repcap.OffsetNull.Default) -> float:
"""
``[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:OFFSet<CH0>:VALue`` \n
Snippet: ``value: float = driver.source.bb.btooth.econfiguration.pconfiguration.offset.value.get(offsetNull = repcap.OffsetNull.Default)`` \n
Specifies Offset0 to Offset5 of the offset setting table. Command sets the values in ms. Query returns values in s.
:param offsetNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Offset')
:return: offset: float Range: 0 s to depending on Max. Interval , Unit: ms
"""
offsetNull_cmd_val = self._cmd_group.get_repcap_cmd_value(offsetNull, repcap.OffsetNull)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:OFFSet{offsetNull_cmd_val}:VALue?')
return Conversions.str_to_float(response)