from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class EmfCls:
"""Emf commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("emf", core, parent)
[docs] def get_state(self) -> bool:
"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:EMF:[STATe] \n
Snippet: value: bool = driver.source.iq.output.analog.envelope.emf.get_state() \n
Defines whether the EMF or the voltage value is used. \n
:return: emf_state: 1| ON| 0| OFF
"""
response = self._core.io.query_str('SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:EMF:STATe?')
return Conversions.str_to_bool(response)
[docs] def set_state(self, emf_state: bool) -> None:
"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:EMF:[STATe] \n
Snippet: driver.source.iq.output.analog.envelope.emf.set_state(emf_state = False) \n
Defines whether the EMF or the voltage value is used. \n
:param emf_state: 1| ON| 0| OFF
"""
param = Conversions.bool_to_str(emf_state)
self._core.io.write(f'SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:EMF:STATe {param}')