Source code for RsFsw.Implementations.Applications.K91_Wlan.Sense.Power.Achannel.Reference.Auto

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


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

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

[docs] def set(self, reference: enums.EventOnce) -> None: """ ``[SENSe]:POWer:ACHannel:REFerence:AUTO`` \n Snippet: ``driver.applications.k91Wlan.sense.power.achannel.reference.auto.set(reference = enums.EventOnce.ONCE)`` \n This command sets the channel power as the reference for relative ACLR measurements. """ param = Conversions.enum_scalar_to_str(reference, enums.EventOnce) self._core.io.write(f'SENSe:POWer:ACHannel:REFerence:AUTO {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.EventOnce: """ ``[SENSe]:POWer:ACHannel:REFerence:AUTO`` \n Snippet: ``value: enums.EventOnce = driver.applications.k91Wlan.sense.power.achannel.reference.auto.get()`` \n This command sets the channel power as the reference for relative ACLR measurements. """ response = self._core.io.query_str(f'SENSe:POWer:ACHannel:REFerence:AUTO?') return Conversions.str_to_scalar_enum(response, enums.EventOnce)