[docs]classLatencyCls:"""Latency commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("latency",core,parent)
[docs]defget_bz(self)->float:"""SCPI: [SOURce<HW>]:REGenerator:SIMulation:LATency:[BZ] \n Snippet: value: float = driver.source.regenerator.simulation.latency.get_bz() \n Sets the system latency value manually. \n :return: blind_zone: float Range: 0 to 3000 """response=self._core.io.query_str('SOURce<HwInstance>:REGenerator:SIMulation:LATency:BZ?')returnConversions.str_to_float(response)
[docs]defset_bz(self,blind_zone:float)->None:"""SCPI: [SOURce<HW>]:REGenerator:SIMulation:LATency:[BZ] \n Snippet: driver.source.regenerator.simulation.latency.set_bz(blind_zone = 1.0) \n Sets the system latency value manually. \n :param blind_zone: float Range: 0 to 3000 """param=Conversions.decimal_value_to_str(blind_zone)self._core.io.write(f'SOURce<HwInstance>:REGenerator:SIMulation:LATency:BZ {param}')