from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class EmfCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("emf", core, parent)
[docs]
def get_state(self) -> bool:
"""
``[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.
: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:
"""
``[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.
: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}')