Source code for RsFsw.Implementations.Applications.K91_Wlan.Sense.Power.Achannel.AcPairs

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AcPairsCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("acPairs", core, parent)

[docs] def set(self, channel_pairs: float) -> None: """ ``[SENSe]:POWer:ACHannel:ACPairs`` \n Snippet: ``driver.applications.k91Wlan.sense.power.achannel.acPairs.set(channel_pairs = 1.0)`` \n Defines the number of pairs of adjacent and alternate channels. :param channel_pairs: Range: 0 to 12 """ param = Conversions.decimal_value_to_str(channel_pairs) self._core.io.write(f'SENSe:POWer:ACHannel:ACPairs {param}')
[docs] def get(self) -> float: """ ``[SENSe]:POWer:ACHannel:ACPairs`` \n Snippet: ``value: float = driver.applications.k91Wlan.sense.power.achannel.acPairs.get()`` \n Defines the number of pairs of adjacent and alternate channels. :return: channel_pairs: Range: 0 to 12 """ response = self._core.io.query_str(f'SENSe:POWer:ACHannel:ACPairs?') return Conversions.str_to_float(response)