from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ModeCls:
"""Mode commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("mode", core, parent)
[docs] def set(self, mode: enums.ReferenceMode) -> None:
"""SCPI: [SENSe]:POWer:ACHannel:MODE \n
Snippet: driver.applications.k91Wlan.sense.power.achannel.mode.set(mode = enums.ReferenceMode.ABSolute) \n
Selects the way the FSW displays the power of adjacent channels. You need at least one adjacent channel for the command
to work. \n
:param mode: ABSolute | RELative ABSolute Shows the absolute power of all channels RELative Shows the power of adjacent and alternate channels in relation to the transmission channel
"""
param = Conversions.enum_scalar_to_str(mode, enums.ReferenceMode)
self._core.io.write(f'SENSe:POWer:ACHannel:MODE {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.ReferenceMode:
"""SCPI: [SENSe]:POWer:ACHannel:MODE \n
Snippet: value: enums.ReferenceMode = driver.applications.k91Wlan.sense.power.achannel.mode.get() \n
Selects the way the FSW displays the power of adjacent channels. You need at least one adjacent channel for the command
to work. \n
:return: mode: ABSolute | RELative ABSolute Shows the absolute power of all channels RELative Shows the power of adjacent and alternate channels in relation to the transmission channel"""
response = self._core.io.query_str(f'SENSe:POWer:ACHannel:MODE?')
return Conversions.str_to_scalar_enum(response, enums.ReferenceMode)