from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SymbolRateCls:
"""SymbolRate commands group definition. 2 total commands, 1 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("symbolRate", core, parent)
@property
def hdr(self):
"""hdr commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_hdr'):
from .Hdr import HdrCls
self._hdr = HdrCls(self._core, self._cmd_group)
return self._hdr
[docs] def get_variation(self) -> float:
"""SCPI: [SOURce<HW>]:BB:BTOoth:SRATe:VARiation \n
Snippet: value: float = driver.source.bb.btooth.symbolRate.get_variation() \n
Sets the symbol rate. \n
:return: variation: float Range: 4E2 to 15E6
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:BTOoth:SRATe:VARiation?')
return Conversions.str_to_float(response)
[docs] def set_variation(self, variation: float) -> None:
"""SCPI: [SOURce<HW>]:BB:BTOoth:SRATe:VARiation \n
Snippet: driver.source.bb.btooth.symbolRate.set_variation(variation = 1.0) \n
Sets the symbol rate. \n
:param variation: float Range: 4E2 to 15E6
"""
param = Conversions.decimal_value_to_str(variation)
self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:SRATe:VARiation {param}')
def clone(self) -> 'SymbolRateCls':
"""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 = SymbolRateCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group