Source code for RsCma.Implementations.Configure.AfRf.Measurement.MultiEval.Limit.Demodulation.FmStereo.PiDeviation

from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal.Types import DataType
from .........Internal.StructBase import StructBase
from .........Internal.ArgStruct import ArgStruct
from .........Internal.ArgSingleList import ArgSingleList
from .........Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PiDeviationCls: """PiDeviation commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("piDeviation", core, parent)
[docs] def set(self, enable: bool, upper: float) -> None: """SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:FMSTereo:PIDeviation \n Snippet: driver.configure.afRf.measurement.multiEval.limit.demodulation.fmStereo.piDeviation.set(enable = False, upper = 1.0) \n Configures a limit for the pilot deviation results, measured for FM stereo. \n :param enable: OFF | ON Enables or disables the limit check :param upper: Upper pilot deviation limit Range: 0 Hz to 10 kHz, Unit: Hz """ param = ArgSingleList().compose_cmd_string(ArgSingle('enable', enable, DataType.Boolean), ArgSingle('upper', upper, DataType.Float)) self._core.io.write(f'CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:FMSTereo:PIDeviation {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class PiDeviationStruct(StructBase): """Response structure. Fields: \n - Enable: bool: OFF | ON Enables or disables the limit check - Upper: float: Upper pilot deviation limit Range: 0 Hz to 10 kHz, Unit: Hz""" __meta_args_list = [ ArgStruct.scalar_bool('Enable'), ArgStruct.scalar_float('Upper')] def __init__(self): StructBase.__init__(self, self) self.Enable: bool = None self.Upper: float = None
[docs] def get(self) -> PiDeviationStruct: """SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:FMSTereo:PIDeviation \n Snippet: value: PiDeviationStruct = driver.configure.afRf.measurement.multiEval.limit.demodulation.fmStereo.piDeviation.get() \n Configures a limit for the pilot deviation results, measured for FM stereo. \n :return: structure: for return value, see the help for PiDeviationStruct structure arguments.""" return self._core.io.query_struct(f'CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:FMSTereo:PIDeviation?', self.__class__.PiDeviationStruct())