[docs]classCurrentCls:"""Current commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("current",core,parent)
[docs]defget(self)->int:"""SCPI: [SENSe]:SWEep:COUNt:CURRent \n Snippet: value: int = driver.applications.k17Mcgd.sense.sweep.count.current.get() \n This query returns the current number of started sweeps or measurements. This command is only available if a sweep count value is defined and the instrument is in single sweep mode. \n :return: result: No help available"""response=self._core.io.query_str(f'SENSe:SWEep:COUNt:CURRent?')returnConversions.str_to_int(response)