[docs]classHighestCls:"""Highest commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("highest",core,parent)
[docs]defget(self)->int:"""SCPI: CONFigure:WLAN:RUConfig:COUNt:HIGHest \n Snippet: value: int = driver.applications.k91Wlan.configure.wlan.ruConfig.count.highest.get() \n Queries the highest configured RU index in the entire signal. \n :return: max_index: Range: 1 to 9"""response=self._core.io.query_str(f'CONFigure:WLAN:RUConfig:COUNt:HIGHest?')returnConversions.str_to_int(response)