Source code for RsFsw.Implementations.Applications.K91_Wlan.Configure.Wlan.RuConfig.Segment.Channel.Rulocation.User.Count

from ...........Internal.Core import Core
from ...........Internal.CommandsGroup import CommandsGroup
from ...........Internal import Conversions
from ........... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CountCls: """Count commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("count", core, parent)
[docs] def get(self, segment=repcap.Segment.Default, channel=repcap.Channel.Default, ruAllocationIx=repcap.RuAllocationIx.Default) -> int: """SCPI: CONFigure:WLAN:RUConfig:SEGMent<seg>:CHANnel<ch>:RULocation<cf>:USER:COUNt \n Snippet: value: int = driver.applications.k91Wlan.configure.wlan.ruConfig.segment.channel.rulocation.user.count.get(segment = repcap.Segment.Default, channel = repcap.Channel.Default, ruAllocationIx = repcap.RuAllocationIx.Default) \n Queries the number of users configured for the specified RU. \n :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :param channel: optional repeated capability selector. Default value: Ch1 (settable in the interface 'Channel') :param ruAllocationIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Rulocation') :return: max_users: Range: 1 to 8""" segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel) ruAllocationIx_cmd_val = self._cmd_group.get_repcap_cmd_value(ruAllocationIx, repcap.RuAllocationIx) response = self._core.io.query_str(f'CONFigure:WLAN:RUConfig:SEGMent{segment_cmd_val}:CHANnel{channel_cmd_val}:RULocation{ruAllocationIx_cmd_val}:USER:COUNt?') return Conversions.str_to_int(response)