Source code for RsFswp.Implementations.Sense.Power.Achannel.Gap.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.AutoManualMode, gapChannel=repcap.GapChannel.Default) -> None: """SCPI: [SENSe]:POWer:ACHannel:GAP<gap>:MODE \n Snippet: driver.sense.power.achannel.gap.mode.set(mode = enums.AutoManualMode.AUTO, gapChannel = repcap.GapChannel.Default) \n No command help available \n :param mode: No help available :param gapChannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Gap') """ param = Conversions.enum_scalar_to_str(mode, enums.AutoManualMode) gapChannel_cmd_val = self._cmd_group.get_repcap_cmd_value(gapChannel, repcap.GapChannel) self._core.io.write(f'SENSe:POWer:ACHannel:GAP{gapChannel_cmd_val}:MODE {param}')
# noinspection PyTypeChecker
[docs] def get(self, gapChannel=repcap.GapChannel.Default) -> enums.AutoManualMode: """SCPI: [SENSe]:POWer:ACHannel:GAP<gap>:MODE \n Snippet: value: enums.AutoManualMode = driver.sense.power.achannel.gap.mode.get(gapChannel = repcap.GapChannel.Default) \n No command help available \n :param gapChannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Gap') :return: mode: No help available""" gapChannel_cmd_val = self._cmd_group.get_repcap_cmd_value(gapChannel, repcap.GapChannel) response = self._core.io.query_str(f'SENSe:POWer:ACHannel:GAP{gapChannel_cmd_val}:MODE?') return Conversions.str_to_scalar_enum(response, enums.AutoManualMode)