from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
from .... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AbImpedanceCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("abImpedance", core, parent)
[docs]
def set(self, state: enums.Synchronization) -> None:
"""
``INSTrument:COUPle:ABIMpedance`` \n
Snippet: ``driver.instrument.couple.abImpedance.set(state = enums.Synchronization.ALL)`` \n
This command turns synchronization of the amplitude baseband impedance configuration between measurement channels on and
off.
:param state: ALL | NONE ALL Turns on synchronization. NONE Turns off synchronization.
"""
param = Conversions.enum_scalar_to_str(state, enums.Synchronization)
self._core.io.write(f'INSTrument:COUPle:ABIMpedance {param}')
# noinspection PyTypeChecker
[docs]
def get(self) -> enums.Synchronization:
"""
``INSTrument:COUPle:ABIMpedance`` \n
Snippet: ``value: enums.Synchronization = driver.instrument.couple.abImpedance.get()`` \n
This command turns synchronization of the amplitude baseband impedance configuration between measurement channels on and
off.
:return: state: ALL | NONE ALL Turns on synchronization. NONE Turns off synchronization.
"""
response = self._core.io.query_str(f'INSTrument:COUPle:ABIMpedance?')
return Conversions.str_to_scalar_enum(response, enums.Synchronization)