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, once: enums.EventOnce) -> None:
"""
``[SENSe]:POWer:ACHannel:REFerence:AUTO`` \n
Snippet: ``driver.applications.k14Xnr5G.sense.power.achannel.reference.auto.set(once = enums.EventOnce.ONCE)`` \n
This command sets the channel power as the reference for relative ACLR measurements.
"""
param = Conversions.enum_scalar_to_str(once, enums.EventOnce)
self._core.io.write(f'SENSe:POWer:ACHannel:REFerence:AUTO {param}')