[docs]classCountCls:"""Count commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("count",core,parent)
[docs]defget(self)->float:"""SCPI: [SENSe]:NR5G:FEVents:COUNt \n Snippet: value: float = driver.applications.k14Xnr5G.sense.nr5G.fevents.count.get() \n Queries the number of filtered events for combined measurements. INTRO_CMD_HELP: Prerequisites for this command \n - Define and turn on an event filter. \n :return: count: No help available"""response=self._core.io.query_str(f'SENSe:NR5G:FEVents:COUNt?')returnConversions.str_to_float(response)