[docs]classMsettingsCls:"""Msettings commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("msettings",core,parent)
[docs]defget_fdeviation(self)->float:"""SCPI: [SOURce<HW>]:BB:BTOoth:MSETtings:FDEViation \n Snippet: value: float = driver.source.bb.btooth.msettings.get_fdeviation() \n Sets the frequency deviation. \n :return: fdeviation: float Range: Depends on Bluetooth mode """response=self._core.io.query_str('SOURce<HwInstance>:BB:BTOoth:MSETtings:FDEViation?')returnConversions.str_to_float(response)
[docs]defset_fdeviation(self,fdeviation:float)->None:"""SCPI: [SOURce<HW>]:BB:BTOoth:MSETtings:FDEViation \n Snippet: driver.source.bb.btooth.msettings.set_fdeviation(fdeviation = 1.0) \n Sets the frequency deviation. \n :param fdeviation: float Range: Depends on Bluetooth mode """param=Conversions.decimal_value_to_str(fdeviation)self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:MSETtings:FDEViation {param}')