Source code for RsCmwBluetoothMeas.Implementations.MultiEval.Modulation.Edrate.Current.Extended

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.StructBase import StructBase
from ......Internal.ArgStruct import ArgStruct


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class ExtendedCls: """Extended commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("extended", core, parent) # noinspection PyTypeChecker
[docs] class ResultData(StructBase): """Response structure. Fields: \n - Reliability: int: No parameter help available - Out_Of_Tol: float: No parameter help available - Omega_I: float: No parameter help available - Omega_Iplus_Omega_0_Max: float: No parameter help available - Omega_0_Max: float: No parameter help available - Rms_Devm: float: No parameter help available - Peak_Devm: float: No parameter help available - P_99_Devm: float: No parameter help available - Nominal_Power: float: No parameter help available - P_99_Devm_Per: float: No parameter help available""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_float('Out_Of_Tol'), ArgStruct.scalar_float('Omega_I'), ArgStruct.scalar_float('Omega_Iplus_Omega_0_Max'), ArgStruct.scalar_float('Omega_0_Max'), ArgStruct.scalar_float('Rms_Devm'), ArgStruct.scalar_float('Peak_Devm'), ArgStruct.scalar_float('P_99_Devm'), ArgStruct.scalar_float('Nominal_Power'), ArgStruct.scalar_float('P_99_Devm_Per')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Out_Of_Tol: float = None self.Omega_I: float = None self.Omega_Iplus_Omega_0_Max: float = None self.Omega_0_Max: float = None self.Rms_Devm: float = None self.Peak_Devm: float = None self.P_99_Devm: float = None self.Nominal_Power: float = None self.P_99_Devm_Per: float = None
[docs] def read(self) -> ResultData: """SCPI: READ:BLUetooth:MEASurement<Instance>:MEValuation:MODulation:EDRate:CURRent:EXTended \n Snippet: value: ResultData = driver.multiEval.modulation.edrate.current.extended.read() \n No command help available \n :return: structure: for return value, see the help for ResultData structure arguments.""" return self._core.io.query_struct(f'READ:BLUetooth:MEASurement<Instance>:MEValuation:MODulation:EDRate:CURRent:EXTended?', self.__class__.ResultData())
[docs] def fetch(self) -> ResultData: """SCPI: FETCh:BLUetooth:MEASurement<Instance>:MEValuation:MODulation:EDRate:CURRent:EXTended \n Snippet: value: ResultData = driver.multiEval.modulation.edrate.current.extended.fetch() \n No command help available \n :return: structure: for return value, see the help for ResultData structure arguments.""" return self._core.io.query_struct(f'FETCh:BLUetooth:MEASurement<Instance>:MEValuation:MODulation:EDRate:CURRent:EXTended?', self.__class__.ResultData())