from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class CouplingCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("coupling", core, parent)
[docs]
def set(self, rf_coupling_state: bool, iqConnector=repcap.IqConnector.Default) -> None:
"""
``SCONfiguration:EXTernal:BBMM<CH>:RF:COUPling`` \n
Snippet: ``driver.sconfiguration.external.bbmm.rf.coupling.set(rf_coupling_state = False, iqConnector = repcap.IqConnector.Default)`` \n
Enables/disables coupling all major RF setting (like the frequency, level and RF state) of the external instrument to the
R&S SMW200A.
:param rf_coupling_state: 1 | ON | 0| OFF
:param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bbmm')
"""
param = Conversions.bool_to_str(rf_coupling_state)
iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector)
self._core.io.write(f'SCONfiguration:EXTernal:BBMM{iqConnector_cmd_val}:RF:COUPling {param}')
[docs]
def get(self, iqConnector=repcap.IqConnector.Default) -> bool:
"""
``SCONfiguration:EXTernal:BBMM<CH>:RF:COUPling`` \n
Snippet: ``value: bool = driver.sconfiguration.external.bbmm.rf.coupling.get(iqConnector = repcap.IqConnector.Default)`` \n
Enables/disables coupling all major RF setting (like the frequency, level and RF state) of the external instrument to the
R&S SMW200A.
:param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bbmm')
:return: rf_coupling_state: 1 | ON | 0| OFF
"""
iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector)
response = self._core.io.query_str(f'SCONfiguration:EXTernal:BBMM{iqConnector_cmd_val}:RF:COUPling?')
return Conversions.str_to_bool(response)