from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ModeCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("mode", core, parent)
[docs]
def set(self, mode: enums.ReferenceMode) -> None:
"""
``[SENSe]:POWer:ACHannel:MODE`` \n
Snippet: ``driver.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.
: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:
"""
``[SENSe]:POWer:ACHannel:MODE`` \n
Snippet: ``value: enums.ReferenceMode = driver.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.
: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)