Source code for RsSmbv.Implementations.Initiate.FreqSweep.Continuous

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ContinuousCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("continuous", core, parent)

[docs] def set(self, freq_sweep_state: bool, channel=repcap.Channel.Default) -> None: """ ``INITiate<HW>:FSWeep:CONTinuous`` \n Snippet: ``driver.initiate.freqSweep.continuous.set(freq_sweep_state = False, channel = repcap.Channel.Default)`` \n No help available :param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Initiate') """ param = Conversions.bool_to_str(freq_sweep_state) channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel) self._core.io.write(f'INITiate{channel_cmd_val}:FSWeep:CONTinuous {param}')
[docs] def get(self, channel=repcap.Channel.Default) -> bool: """ ``INITiate<HW>:FSWeep:CONTinuous`` \n Snippet: ``value: bool = driver.initiate.freqSweep.continuous.get(channel = repcap.Channel.Default)`` \n No help available :param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Initiate') """ channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel) response = self._core.io.query_str(f'INITiate{channel_cmd_val}:FSWeep:CONTinuous?') return Conversions.str_to_bool(response)