from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class HighestCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("highest", core, parent)
[docs]
def get(self) -> int:
"""
``CONFigure:WLAN:RUConfig:COUNt:HIGHest`` \n
Snippet: ``value: int = driver.applications.k91Wlan.configure.wlan.ruConfig.count.highest.get()`` \n
Queries the highest configured RU count in the entire signal.
:return: max_index: Range: 1 to 144 (depending on standard
"""
response = self._core.io.query_str(f'CONFigure:WLAN:RUConfig:COUNt:HIGHest?')
return Conversions.str_to_int(response)