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 MappingCls:
"""Mapping commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("mapping", core, parent)
[docs] def set(self, mapping: enums.ErFpowSensMapping, channel=repcap.Channel.Default) -> None:
"""SCPI: SLISt:ELEMent<CH>:MAPPing \n
Snippet: driver.slist.element.mapping.set(mapping = enums.ErFpowSensMapping.SENS1, channel = repcap.Channel.Default) \n
Assigns an entry from the method RsSmbv.Slist.listPy to one of the four sensor channels. \n
:param mapping: SENS1| SENSor1| SENS2| SENSor2| SENS3| SENSor3| SENS4| SENSor4| UNMapped Sensor channel.
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Element')
"""
param = Conversions.enum_scalar_to_str(mapping, enums.ErFpowSensMapping)
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
self._core.io.write(f'SLISt:ELEMent{channel_cmd_val}:MAPPing {param}')
# noinspection PyTypeChecker
[docs] def get(self, channel=repcap.Channel.Default) -> enums.ErFpowSensMapping:
"""SCPI: SLISt:ELEMent<CH>:MAPPing \n
Snippet: value: enums.ErFpowSensMapping = driver.slist.element.mapping.get(channel = repcap.Channel.Default) \n
Assigns an entry from the method RsSmbv.Slist.listPy to one of the four sensor channels. \n
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Element')
:return: mapping: SENS1| SENSor1| SENS2| SENSor2| SENS3| SENSor3| SENS4| SENSor4| UNMapped Sensor channel."""
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
response = self._core.io.query_str(f'SLISt:ELEMent{channel_cmd_val}:MAPPing?')
return Conversions.str_to_scalar_enum(response, enums.ErFpowSensMapping)