[docs]classVcoCls:"""Vco commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("vco",core,parent)
[docs]defget_limits(self)->str:"""SCPI: CALibration:VCO:LIMits \n Snippet: value: str = driver.calibration.vco.get_limits() \n No command help available \n :return: vco_limits: No help available """response=self._core.io.query_str('CALibration:VCO:LIMits?')returntrim_str_response(response)