[docs]classSlotsCls:"""Slots commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("slots",core,parent)
[docs]defset(self,slots:float)->None:"""SCPI: [SENSe]:ADJust:EVM:SLOTs \n Snippet: driver.applications.k14Xnr5G.sense.adjust.evm.slots.set(slots = 1.0) \n Selects the number of slots to be used during the auto EVM routine. INTRO_CMD_HELP: Prerequisites for this command \n - Select manual automatic measurement time mode ([SENSe:]ADJust:CONFigure:LEVel:DURation:MODE) . - Define an appropriate automatic measurement time ([SENSe:]ADJust:CONFigure:LEVel:DURation) . \n :param slots: No help available """param=Conversions.decimal_value_to_str(slots)self._core.io.write(f'SENSe:ADJust:EVM:SLOTs {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:ADJust:EVM:SLOTs \n Snippet: value: float = driver.applications.k14Xnr5G.sense.adjust.evm.slots.get() \n Selects the number of slots to be used during the auto EVM routine. INTRO_CMD_HELP: Prerequisites for this command \n - Select manual automatic measurement time mode ([SENSe:]ADJust:CONFigure:LEVel:DURation:MODE) . - Define an appropriate automatic measurement time ([SENSe:]ADJust:CONFigure:LEVel:DURation) . \n :return: slots: No help available"""response=self._core.io.query_str(f'SENSe:ADJust:EVM:SLOTs?')returnConversions.str_to_float(response)