[docs]classEmfCls:"""Emf commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("emf",core,parent)
[docs]defget_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?')returnConversions.str_to_bool(response)
[docs]defset_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}')