Source code for RsFsw.Implementations.Applications.K50_Spurious.Output.Trigger.Otype

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class OtypeCls: """Otype commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("otype", core, parent)
[docs] def set(self, type_py: enums.TriggerOutType, triggerPort=repcap.TriggerPort.Default) -> None: """SCPI: OUTPut:TRIGger<tp>:OTYPe \n Snippet: driver.applications.k50Spurious.output.trigger.otype.set(type_py = enums.TriggerOutType.DEVice, triggerPort = repcap.TriggerPort.Default) \n Selects the type of signal generated at the trigger output. Note: For offline AF or RF triggers, no output signal is provided. \n :param type_py: No help available :param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger') """ param = Conversions.enum_scalar_to_str(type_py, enums.TriggerOutType) triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort) self._core.io.write(f'OUTPut:TRIGger{triggerPort_cmd_val}:OTYPe {param}')
# noinspection PyTypeChecker
[docs] def get(self, triggerPort=repcap.TriggerPort.Default) -> enums.TriggerOutType: """SCPI: OUTPut:TRIGger<tp>:OTYPe \n Snippet: value: enums.TriggerOutType = driver.applications.k50Spurious.output.trigger.otype.get(triggerPort = repcap.TriggerPort.Default) \n Selects the type of signal generated at the trigger output. Note: For offline AF or RF triggers, no output signal is provided. \n :param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger') :return: type_py: No help available""" triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort) response = self._core.io.query_str(f'OUTPut:TRIGger{triggerPort_cmd_val}:OTYPe?') return Conversions.str_to_scalar_enum(response, enums.TriggerOutType)