Source code for RsSmbv.Implementations.Source.Correction.Fresponse.Iq.User.Flist.Magnitude.State

from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from ......... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StateCls: """State commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("state", core, parent)
[docs] def set(self, freq_corr_mag_stat: bool, index=repcap.Index.Default) -> None: """SCPI: [SOURce<HW>]:CORRection:FRESponse:IQ:USER:FLISt<CH>:MAGNitude:[STATe] \n Snippet: driver.source.correction.fresponse.iq.user.flist.magnitude.state.set(freq_corr_mag_stat = False, index = repcap.Index.Default) \n No command help available \n :param freq_corr_mag_stat: No help available :param index: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Flist') """ param = Conversions.bool_to_str(freq_corr_mag_stat) index_cmd_val = self._cmd_group.get_repcap_cmd_value(index, repcap.Index) self._core.io.write(f'SOURce<HwInstance>:CORRection:FRESponse:IQ:USER:FLISt{index_cmd_val}:MAGNitude:STATe {param}')
[docs] def get(self, index=repcap.Index.Default) -> bool: """SCPI: [SOURce<HW>]:CORRection:FRESponse:IQ:USER:FLISt<CH>:MAGNitude:[STATe] \n Snippet: value: bool = driver.source.correction.fresponse.iq.user.flist.magnitude.state.get(index = repcap.Index.Default) \n No command help available \n :param index: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Flist') :return: freq_corr_mag_stat: No help available""" index_cmd_val = self._cmd_group.get_repcap_cmd_value(index, repcap.Index) response = self._core.io.query_str(f'SOURce<HwInstance>:CORRection:FRESponse:IQ:USER:FLISt{index_cmd_val}:MAGNitude:STATe?') return Conversions.str_to_bool(response)