Source code for RsFswp.Implementations.Applications.K60_Transient.InputPy.Select

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SelectCls: """Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("select", core, parent)
[docs] def set(self, source: enums.InputSourceB) -> None: """SCPI: INPut:SELect \n Snippet: driver.applications.k60Transient.inputPy.select.set(source = enums.InputSourceB.FIQ) \n This command selects the signal source for measurements, i.e. it defines which connector is used to input data to the R&S FSWP. \n :param source: RF Radio Frequency ('RF INPUT' connector) FIQ I/Q data file (selected by method RsFswp.InputPy.File.Path.set) For details, see 'Basics on input from I/Q data files'. """ param = Conversions.enum_scalar_to_str(source, enums.InputSourceB) self._core.io.write(f'INPut:SELect {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.InputSourceB: """SCPI: INPut:SELect \n Snippet: value: enums.InputSourceB = driver.applications.k60Transient.inputPy.select.get() \n This command selects the signal source for measurements, i.e. it defines which connector is used to input data to the R&S FSWP. \n :return: source: RF Radio Frequency ('RF INPUT' connector) FIQ I/Q data file (selected by method RsFswp.InputPy.File.Path.set) For details, see 'Basics on input from I/Q data files'.""" response = self._core.io.query_str(f'INPut:SELect?') return Conversions.str_to_scalar_enum(response, enums.InputSourceB)