Source code for RsFsw.Implementations.System.Communicate.Rdevice.Pmeter.Define

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
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DefineCls: """Define commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("define", core, parent)
[docs] def set(self, placeholder: str, type_py: str, interface: str, serial_no: str, powerMeter=repcap.PowerMeter.Default) -> None: """SCPI: SYSTem:COMMunicate:RDEVice:PMETer<p>:DEFine \n Snippet: driver.system.communicate.rdevice.pmeter.define.set(placeholder = 'abc', type_py = 'abc', interface = 'abc', serial_no = 'abc', powerMeter = repcap.PowerMeter.Default) \n Assigns the power sensor with the specified serial number to the selected power sensor index (configuration) . The query returns the power sensor type and serial number of the sensor assigned to the specified index. For a list of supported power sensors, see the specifications document. \n :param placeholder: Currently not used :param type_py: Detected power sensor type, e.g. 'NRP-Z81'. :param interface: Interface the power sensor is connected to; always 'USB' :param serial_no: Serial number of the power sensor assigned to the specified index :param powerMeter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Pmeter') """ param = ArgSingleList().compose_cmd_string(ArgSingle('placeholder', placeholder, DataType.String), ArgSingle('type_py', type_py, DataType.String), ArgSingle('interface', interface, DataType.String), ArgSingle('serial_no', serial_no, DataType.String)) powerMeter_cmd_val = self._cmd_group.get_repcap_cmd_value(powerMeter, repcap.PowerMeter) self._core.io.write(f'SYSTem:COMMunicate:RDEVice:PMETer{powerMeter_cmd_val}:DEFine {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class DefineStruct(StructBase): """Response structure. Fields: \n - Placeholder: str: Currently not used - Type_Py: str: Detected power sensor type, e.g. 'NRP-Z81'. - Interface: str: Interface the power sensor is connected to; always 'USB' - Serial_No: str: Serial number of the power sensor assigned to the specified index""" __meta_args_list = [ ArgStruct.scalar_str('Placeholder'), ArgStruct.scalar_str('Type_Py'), ArgStruct.scalar_str('Interface'), ArgStruct.scalar_str('Serial_No')] def __init__(self): StructBase.__init__(self, self) self.Placeholder: str = None self.Type_Py: str = None self.Interface: str = None self.Serial_No: str = None
[docs] def get(self, powerMeter=repcap.PowerMeter.Default) -> DefineStruct: """SCPI: SYSTem:COMMunicate:RDEVice:PMETer<p>:DEFine \n Snippet: value: DefineStruct = driver.system.communicate.rdevice.pmeter.define.get(powerMeter = repcap.PowerMeter.Default) \n Assigns the power sensor with the specified serial number to the selected power sensor index (configuration) . The query returns the power sensor type and serial number of the sensor assigned to the specified index. For a list of supported power sensors, see the specifications document. \n :param powerMeter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Pmeter') :return: structure: for return value, see the help for DefineStruct structure arguments.""" powerMeter_cmd_val = self._cmd_group.get_repcap_cmd_value(powerMeter, repcap.PowerMeter) return self._core.io.query_struct(f'SYSTem:COMMunicate:RDEVice:PMETer{powerMeter_cmd_val}:DEFine?', self.__class__.DefineStruct())