[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)->float:"""SCPI: [SENSe]:SWEep:COUNt:CURRent \n Snippet: value: float = driver.applications.k18AmplifierEt.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: sweep: No help available"""response=self._core.io.query_str(f'SENSe:SWEep:COUNt:CURRent?')returnConversions.str_to_float(response)