[docs]classPcountCls:"""Pcount commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pcount",core,parent)
[docs]defset(self,arg_0:float)->None:"""SCPI: [SENSe]:SWEep:EGATe:CONTinuous:PCOunt \n Snippet: driver.applications.k10Xlte.sense.sweep.egate.continuous.pcount.set(arg_0 = 1.0) \n Defines the number of gate periods to be measured after a single trigger event. \n :param arg_0: integer Range: 1 to 65535 """param=Conversions.decimal_value_to_str(arg_0)self._core.io.write(f'SENSe:SWEep:EGATe:CONTinuous:PCOunt {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:SWEep:EGATe:CONTinuous:PCOunt \n Snippet: value: float = driver.applications.k10Xlte.sense.sweep.egate.continuous.pcount.get() \n Defines the number of gate periods to be measured after a single trigger event. \n :return: arg_0: No help available"""response=self._core.io.query_str(f'SENSe:SWEep:EGATe:CONTinuous:PCOunt?')returnConversions.str_to_float(response)