[docs]classStepCls:"""Step commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("step",core,parent)
[docs]defset(self,name:str,state:bool)->None:"""SCPI: CALibration<HW>:SELected:STEP \n Snippet: driver.calibration.selected.step.set(name = 'abc', state = False) \n No command help available \n :param name: No help available :param state: No help available """param=ArgSingleList().compose_cmd_string(ArgSingle('name',name,DataType.String),ArgSingle('state',state,DataType.Boolean))self._core.io.write(f'CALibration<HwInstance>:SELected:STEP {param}'.rstrip())
[docs]defget(self)->bool:"""SCPI: CALibration<HW>:SELected:STEP \n Snippet: value: bool = driver.calibration.selected.step.get() \n No command help available \n :return: state: No help available"""response=self._core.io.query_str(f'CALibration<HwInstance>:SELected:STEP?')returnConversions.str_to_bool(response)