Source code for RsFsw.Implementations.Sense.Probe.Setup.Mode

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 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.ProbeSetupMode, probe=repcap.Probe.Default) -> None: """SCPI: [SENSe]:PROBe<pb>:SETup:MODE \n Snippet: driver.sense.probe.setup.mode.set(mode = enums.ProbeSetupMode.NOACtion, probe = repcap.Probe.Default) \n No command help available \n :param mode: RSINgle | NOACtion RSINgle Run single: starts one data acquisition. NOACtion Nothing is started on pressing the micro button. :param probe: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Probe') """ param = Conversions.enum_scalar_to_str(mode, enums.ProbeSetupMode) probe_cmd_val = self._cmd_group.get_repcap_cmd_value(probe, repcap.Probe) self._core.io.write(f'SENSe:PROBe{probe_cmd_val}:SETup:MODE {param}')
# noinspection PyTypeChecker
[docs] def get(self, probe=repcap.Probe.Default) -> enums.ProbeSetupMode: """SCPI: [SENSe]:PROBe<pb>:SETup:MODE \n Snippet: value: enums.ProbeSetupMode = driver.sense.probe.setup.mode.get(probe = repcap.Probe.Default) \n No command help available \n :param probe: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Probe') :return: mode: RSINgle | NOACtion RSINgle Run single: starts one data acquisition. NOACtion Nothing is started on pressing the micro button.""" probe_cmd_val = self._cmd_group.get_repcap_cmd_value(probe, repcap.Probe) response = self._core.io.query_str(f'SENSe:PROBe{probe_cmd_val}:SETup:MODE?') return Conversions.str_to_scalar_enum(response, enums.ProbeSetupMode)